2 2 2.1a all wszystkie setup.exe
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6441
All System Info
All System Info is a system info SuperKaramba theme. more>>
All System Info is a system info SuperKaramba theme. Simple english version...
It shows:
- System Info
- CPU usage
- Network Usage
- Memory Load
- HDD usage
<<lessIt shows:
- System Info
- CPU usage
- Network Usage
- Memory Load
- HDD usage
Download (0.19MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1210 downloads
PHP firewall generator 2.0
The PHP Firewall Generator is a simple PHP script that generates a firewall script for iptables or ipchains based firewalls. more>>
The PHP Firewall Generator is a simple PHP script that generates a firewall script for iptables or ipchains based firewalls. The script is created based on configuration rules entered by the user. The aim is to support a rule set similar to those supported by commercial Firewall systems, and make it easy to configure.
Make sure that you have apache and PHP installed (tested with apache-1.3.19-5 and php-4.0.4 from Red Hat 7.1 but shouldwork with others).
Make sure that PHP is actually running.
Make sure that you have iptables installed. Tested with iptables-1.2.1a-1 from Red Hat 7.1
Run this as root:
make install
If you dont have make installed on your system, then you could just run:
installme
Make sure that the files in /var/www/html/phpfwgen/ are readable by the HTTP daemon user (often httpd or apache) and that the files in /var/lib/phpfwgen are readable AND writeable by this user.
The script gets copied into /var/www/html/phpfwgen/ so you should be able to access it as http:// /phpfwgen/
Make sure that the files created in /var/lib/phpfwgen make sense, particularly the "interfaces" file.
<<lessMake sure that you have apache and PHP installed (tested with apache-1.3.19-5 and php-4.0.4 from Red Hat 7.1 but shouldwork with others).
Make sure that PHP is actually running.
Make sure that you have iptables installed. Tested with iptables-1.2.1a-1 from Red Hat 7.1
Run this as root:
make install
If you dont have make installed on your system, then you could just run:
installme
Make sure that the files in /var/www/html/phpfwgen/ are readable by the HTTP daemon user (often httpd or apache) and that the files in /var/lib/phpfwgen are readable AND writeable by this user.
The script gets copied into /var/www/html/phpfwgen/ so you should be able to access it as http:// /phpfwgen/
Make sure that the files created in /var/lib/phpfwgen make sense, particularly the "interfaces" file.
Download (0.035MB)
Added: 2006-07-08 License: GPL (GNU General Public License) Price:
1211 downloads
Find Em All 1.0
Find Em All is inspired by XFCE-3s XFglob and Efinder which is part of the Equinox desktop environment. more>>
FindEmAll is another graphical find-and-grep tool.
Find Em All is inspired by XFCE-3s XFglob and Efinder which is part of the Equinox desktop environment.
Unfortunately XFglob is no longer included in XFCE and Efinder does not seem to work (at least for me), because it uses XFCEs glob command which is no longer available.
Main features:
- optional Perl-style regular expression syntax (grep -P)
- search for files owned by non-system user / group (find -nouser -nogroup)
- search files where the search pattern does not match
- exclude binary files from search
Files may be opened in your favorite editor by a double-click on an entry in the list of results. Right-clicking a file opens a context menu that allows to choose an arbitrary application to open this file.
<<lessFind Em All is inspired by XFCE-3s XFglob and Efinder which is part of the Equinox desktop environment.
Unfortunately XFglob is no longer included in XFCE and Efinder does not seem to work (at least for me), because it uses XFCEs glob command which is no longer available.
Main features:
- optional Perl-style regular expression syntax (grep -P)
- search for files owned by non-system user / group (find -nouser -nogroup)
- search files where the search pattern does not match
- exclude binary files from search
Files may be opened in your favorite editor by a double-click on an entry in the list of results. Right-clicking a file opens a context menu that allows to choose an arbitrary application to open this file.
Download (0.030MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1068 downloads
FileSystemStorage 2.5.2
FileSystemStorage is a project that provides FileSystem storage for Archetypes. more>>
FileSystemStorage is a project that provides FileSystem storage for Archetypes.
FileSystemStorage is an Archetype storage for storing data on FileSystem This storage is used to avoid ZODB to grow quickly when using a lot of large files.
<<lessFileSystemStorage is an Archetype storage for storing data on FileSystem This storage is used to avoid ZODB to grow quickly when using a lot of large files.
Download (0.070MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
987 downloads
Gastify 1.2.2
Gastify is a client for app_notify, an asterisk extension. more>>
Gastify is a client for app_notify, an asterisk extension. Gastify project sits in the notification-area of the gnome-panel and displays a libnotify popup when a call arrives. Beside it logs all calls.
Main features:
- an libnotify popup for incoming calls
- a click on the statusicon opens a call-history
<<lessMain features:
- an libnotify popup for incoming calls
- a click on the statusicon opens a call-history
Download (0.024MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
843 downloads
NAT and blocking all but Port 22 1.0
NAT and blocking all but Port 22 is a simple iptables firewall script. more>>
NAT and blocking all but Port 22 is a simple iptables firewall script.
Sample:
# Internal and External Devices
dev_world=ppp0
dev_int=eth0
# Firewall IP
addr_int=192.168.1.1
# Internal Net
net_int=192.168.1.0/24
###################################################
# Load Modules
insmod ip_tables
insmod ip_conntrack
insmod ip_conntrack_ftp
insmod ipt_state
insmod iptable_nat
insmod ipt_MASQUERADE
###################################################
# Delete all Rules in Filtertable
iptables -F
###################################################
# Define new chains
iptables -N BLOCK
iptables -N EXT-INT
iptables -N INT-EXT
iptables -N ICMP-DENY
iptables -N INT-IF
iptables -N EXT-IF
###################################################
iptables -A BLOCK -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A BLOCK -m state --state NEW -i ! $dev_world -j ACCEPT
iptables -A BLOCK -j DROP
iptables -A INPUT -j BLOCK
iptables -A FORWARD -j BLOCK
###################################################
# Point to chains
iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -i $dev_int -s $net_int -j INT-IF
iptables -A INPUT -d ! $addr_int -i $dev_world -s ! $net_int -j EXT-IF
iptables -A INPUT -j DROP
iptables -A FORWARD -d ! $net_int -i $dev_world -s $net_int -j INT-EXT
iptables -A FORWARD -d $net_int -i $dev_int -s ! $net_int -j EXT-INT
iptables -A FORWARD -j DROP
iptables -A OUTPUT -j ACCEPT
###################################################
# Chain Rules
iptables -A EXT-INT -j DROP
iptables -A EXT-IF -i ! $dev_world -j DROP
iptables -A EXT-IF -p tcp --dport 22 -j ACCEPT
iptables -A EXT-IF -p tcp --dport 5901 -j ACCEPT
iptables -A EXT-IF -p tcp --dport 1024: -j ACCEPT
iptables -A EXT-IF -p udp --dport 1024: -j ACCEPT
iptables -A EXT-IF -j DROP
iptables -A INT-IF -j ACCEPT
###################################################
# NAT Rules
# Standard Routing
iptables -A POSTROUTING -t nat -o $dev_world -j MASQUERADE -s $net_int
# Port Forwarding
#iptables -A PREROUTING -t nat -p tcp -d 192.168.1.1 --dport 5901 --to 192.168.1.2:5901 -j DNAT
##################################################
# Enable IP-Forwarding
echo 1 > /proc/sys/net/ipv4/ip_forward)
<<lessSample:
# Internal and External Devices
dev_world=ppp0
dev_int=eth0
# Firewall IP
addr_int=192.168.1.1
# Internal Net
net_int=192.168.1.0/24
###################################################
# Load Modules
insmod ip_tables
insmod ip_conntrack
insmod ip_conntrack_ftp
insmod ipt_state
insmod iptable_nat
insmod ipt_MASQUERADE
###################################################
# Delete all Rules in Filtertable
iptables -F
###################################################
# Define new chains
iptables -N BLOCK
iptables -N EXT-INT
iptables -N INT-EXT
iptables -N ICMP-DENY
iptables -N INT-IF
iptables -N EXT-IF
###################################################
iptables -A BLOCK -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A BLOCK -m state --state NEW -i ! $dev_world -j ACCEPT
iptables -A BLOCK -j DROP
iptables -A INPUT -j BLOCK
iptables -A FORWARD -j BLOCK
###################################################
# Point to chains
iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -i $dev_int -s $net_int -j INT-IF
iptables -A INPUT -d ! $addr_int -i $dev_world -s ! $net_int -j EXT-IF
iptables -A INPUT -j DROP
iptables -A FORWARD -d ! $net_int -i $dev_world -s $net_int -j INT-EXT
iptables -A FORWARD -d $net_int -i $dev_int -s ! $net_int -j EXT-INT
iptables -A FORWARD -j DROP
iptables -A OUTPUT -j ACCEPT
###################################################
# Chain Rules
iptables -A EXT-INT -j DROP
iptables -A EXT-IF -i ! $dev_world -j DROP
iptables -A EXT-IF -p tcp --dport 22 -j ACCEPT
iptables -A EXT-IF -p tcp --dport 5901 -j ACCEPT
iptables -A EXT-IF -p tcp --dport 1024: -j ACCEPT
iptables -A EXT-IF -p udp --dport 1024: -j ACCEPT
iptables -A EXT-IF -j DROP
iptables -A INT-IF -j ACCEPT
###################################################
# NAT Rules
# Standard Routing
iptables -A POSTROUTING -t nat -o $dev_world -j MASQUERADE -s $net_int
# Port Forwarding
#iptables -A PREROUTING -t nat -p tcp -d 192.168.1.1 --dport 5901 --to 192.168.1.2:5901 -j DNAT
##################################################
# Enable IP-Forwarding
echo 1 > /proc/sys/net/ipv4/ip_forward)
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
985 downloads
phpBB Fetch All 2.0.15
phpBB Fetch All is a plugin for phpBB that displays data from the forum on any page of a Web site. more>>
phpBB Fetch All is a modification to phpBB that displays data from the forum on any page of a website. It supports all phpBB versions from the 2.0.x branch.
Enhancements:
- added $CFG[posts_enable_local_links] to posts.php to remove all target=_blank strings from the post text (thanks to bdepauw)
- closed a possible vulnerability in portal.php (thanks to taipo and VxJasonxV)
- two small changes for phpBB mod compatibility
- fixed a typo in pafiledb.php (thanks to Odin and vfx)
<<lessEnhancements:
- added $CFG[posts_enable_local_links] to posts.php to remove all target=_blank strings from the post text (thanks to bdepauw)
- closed a possible vulnerability in portal.php (thanks to taipo and VxJasonxV)
- two small changes for phpBB mod compatibility
- fixed a typo in pafiledb.php (thanks to Odin and vfx)
Download (0.040MB)
Added: 2005-08-24 License: GPL (GNU General Public License) Price:
1524 downloads
Quarantine firewall 0.2.1a
Quarantine firewall is yet another firewall that has masquerade, type-of-service, and traffic shaping features. more>>
Quarantine firewall is yet another firewall that has masquerade, type-of-service, and traffic shaping features.
Simply do make install. It will copy the module files, qconfig, qmodule and a sample configuration file to /etc/quarantine.d. quarantine and netrouter then goes to /etc/init.d.
The configuration file /etc/quarantine.d/rc.quarantine can be edited manually (see README file) or via the configuration utility qconfig.
The thing youll have to do is creating a symlink in /etc/rc.d/rc[whatever].d named S99netrouter and K00netrouter pointing at /etc/init.d/netrouter.
The firewall script (quarantine) is designed to get the hosts IP adress when connecting to the internet. Youll need to put a /etc/init.d/quarantine start in the /etc/ppp/ip-up file - also insert a /etc/init.d/quarantine stop in the /etc/ppp/ip-down script file.
<<lessSimply do make install. It will copy the module files, qconfig, qmodule and a sample configuration file to /etc/quarantine.d. quarantine and netrouter then goes to /etc/init.d.
The configuration file /etc/quarantine.d/rc.quarantine can be edited manually (see README file) or via the configuration utility qconfig.
The thing youll have to do is creating a symlink in /etc/rc.d/rc[whatever].d named S99netrouter and K00netrouter pointing at /etc/init.d/netrouter.
The firewall script (quarantine) is designed to get the hosts IP adress when connecting to the internet. Youll need to put a /etc/init.d/quarantine start in the /etc/ppp/ip-up file - also insert a /etc/init.d/quarantine stop in the /etc/ppp/ip-down script file.
Download (0.026MB)
Added: 2006-07-08 License: GPL (GNU General Public License) Price:
1203 downloads
Freya 2.1.2
Freya is a script that creates a bot inside an OpenDCHub server to aid Operators do various tasks. more>>
Freya is a script that creates a bot inside an OpenDCHub server to aid Operators do various tasks.
Commands are as follows:
--- All commands can have a + instead of a - infront of them ---
-huggle (user) you huggle someone
-glomp (user) you glomp someone
-me (message) the irc command
-hrr you hrr softly
-purr you purr like a cute lil kitten =^.^=
-makekitties (user) you and the user make kittens together
-sockcount Displays the number of Socks $botname has lost
-kittycount Displays the number of kitties running around
-status Displays Status Information
-uptime Displays How long the hub has been up.
-rules or +rules Displays the Rules in a PM
-version Displays the Script Version.
-time Displays the Current Hub time.
-showops Displays the online ops
-givesock $botname Gives a sock back to the bot
-sock Displays everyone who has got a sock in their mouth
-jumpcmds Displays a List of Hub Jumping commands (if hub jumping is enabled)
-get (variable) if you dont know .. dont worry about it
-releases returns the releases if set by the hub owner
-help or +help help..
Op Commands are as follows:
-info (username) Returns information about the user
-ipuser (Ip) Returns the users name that belongs to the IP given
-kick (Ip or Username) Kicks the user with the username or IP given
-getip (username) Returns the users IP
-ban or -pbanip (ip or hostname) Perminately bans the ip or hostname
-unban (ip or hostname) Unbans a ip or hostname
-nickban (username) Perminately bans the username
-unnickban (username) Unbans the username
-getbanlist Returns the ban list
-hush$botname Triggers will not cause the bot to talk
-talk$botname Triggers will make the bot talk
-dis (username) Disconnects the user
-pban (username) Kicks and bans the user.
-mm (message) Sends a Mass Message.
-clonecheck Tries to find clones in the hub based on IP.
-fakecheck Attempts to locate fakers based on Share value.
-- Opens up a PM with $botname
*** NOTE: These commands
-chpass (new password) Changes your password.
-reg (username) (password) (value) Registers a user
-setverbosity (1 or 0) notifies you if the script kicks/redirects a user
-setratio (value) Sets the Hub:Slot ratio
-setversion (value) Sets the Min DC++ Version Allowed
-setguiversion (value) Sets the Min DCGui Version Allowed
-setlimit (value) Sets the min a user can limit his upload to
-setbmlimit (value) Sets the min a user can limit his BW to
-setredirect (host) Sets the redirect host
-setloginverbose (1 or 0) Notifies you on a user logging in
-setaction (1 or 2) Sets the Default Action, 1 is kick and 2 is redirect
-resetuserinfo Resets the information about the # of users (plz do not use)
-set (variable) (value) WARNING****be careful what you set****
For the Commands that have (1 or 0) 1 is TRUE and 0 is FALSE
<<lessCommands are as follows:
--- All commands can have a + instead of a - infront of them ---
-huggle (user) you huggle someone
-glomp (user) you glomp someone
-me (message) the irc command
-hrr you hrr softly
-purr you purr like a cute lil kitten =^.^=
-makekitties (user) you and the user make kittens together
-sockcount Displays the number of Socks $botname has lost
-kittycount Displays the number of kitties running around
-status Displays Status Information
-uptime Displays How long the hub has been up.
-rules or +rules Displays the Rules in a PM
-version Displays the Script Version.
-time Displays the Current Hub time.
-showops Displays the online ops
-givesock $botname Gives a sock back to the bot
-sock Displays everyone who has got a sock in their mouth
-jumpcmds Displays a List of Hub Jumping commands (if hub jumping is enabled)
-get (variable) if you dont know .. dont worry about it
-releases returns the releases if set by the hub owner
-help or +help help..
Op Commands are as follows:
-info (username) Returns information about the user
-ipuser (Ip) Returns the users name that belongs to the IP given
-kick (Ip or Username) Kicks the user with the username or IP given
-getip (username) Returns the users IP
-ban or -pbanip (ip or hostname) Perminately bans the ip or hostname
-unban (ip or hostname) Unbans a ip or hostname
-nickban (username) Perminately bans the username
-unnickban (username) Unbans the username
-getbanlist Returns the ban list
-hush$botname Triggers will not cause the bot to talk
-talk$botname Triggers will make the bot talk
-dis (username) Disconnects the user
-pban (username) Kicks and bans the user.
-mm (message) Sends a Mass Message.
-clonecheck Tries to find clones in the hub based on IP.
-fakecheck Attempts to locate fakers based on Share value.
-- Opens up a PM with $botname
*** NOTE: These commands
-chpass (new password) Changes your password.
-reg (username) (password) (value) Registers a user
-setverbosity (1 or 0) notifies you if the script kicks/redirects a user
-setratio (value) Sets the Hub:Slot ratio
-setversion (value) Sets the Min DC++ Version Allowed
-setguiversion (value) Sets the Min DCGui Version Allowed
-setlimit (value) Sets the min a user can limit his upload to
-setbmlimit (value) Sets the min a user can limit his BW to
-setredirect (host) Sets the redirect host
-setloginverbose (1 or 0) Notifies you on a user logging in
-setaction (1 or 2) Sets the Default Action, 1 is kick and 2 is redirect
-resetuserinfo Resets the information about the # of users (plz do not use)
-set (variable) (value) WARNING****be careful what you set****
For the Commands that have (1 or 0) 1 is TRUE and 0 is FALSE
Download (0.013MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
608 downloads
ROX-All 1.1
ROX-All is a single archive containing launchers for most of the ROX applications. more>>
ROX-All is a single archive containing launchers for most of the ROX applications.
It contains everything you need to get started with ROX, a GTK desktop based around the file system.
Because actually putting all the software in this archive would make it very big and quickly out of date, it will download the latest versions of programs when you run them the first time.
Therefore, you will need a network connection (but only when downloading or upgrading programs).
<<lessIt contains everything you need to get started with ROX, a GTK desktop based around the file system.
Because actually putting all the software in this archive would make it very big and quickly out of date, it will download the latest versions of programs when you run them the first time.
Therefore, you will need a network connection (but only when downloading or upgrading programs).
Download (0.62MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
969 downloads
Rekall 2.2.6
Rekall is the database front-end for KDE and the Web. more>>
Rekall is a database front-end, somewhat in the style of MicroSoft Access. However, Rekall is not itself a database, and does not include a database.
By this we mean that data is stored somewhere else in an SQL server, and Rekall is fundementaly just a tool to extract, display and update that data (of course, it does lots more than that, it does forms and reports and scripting and .... you get the idea).
It is database agnostic, and does not have any preferred database in the sense that Access(tm) uses the Jet. database engine (although the Windows version can use the Jet database engine via an ODBC driver).
Rekall can do lots of the things that you would expect of a database front-end (or if it cant, let us know!). You can design and use forms and reports, you can construct database queries, and you can import and export data (actually, you can copy data, import is just copy file to table, and export is just copy table to file). You can also create reusable components which you can use in forms and reports, to reduce application development time.
Rekall can be scripted using the the Python language. You can arrange that a script is executed when various events occur (for instance, when the user changes the value of a control).
Scripts can be associated directly with the event, but you can also store scripts in script modules for more general use. And, of course, you have full access to all the modules that are available for Python. Plus, Rekall has an integrated Python debugger with syntax highlighting.
RekallRevealed is run as a community website to support the GPL version of Rekall. Rekall is being included by some of the Linux distributions, and commercial components and support are available from TotalRekall and from theKompany.
Enhancements:
Dynamic Layouts
- Dynamic layouts allow you to create forms where controls automatically resize depending on settings such as font sizes, and as the user resizes the form. This is based on QTs layout engine, althougn only a restricted set of functions are available.
Tool Boxes
- Personally, the author is not a fan of tool boxes, but they seem to be popular, so Rekall now supports them. If you still prefer the old context menu mechanism, you can turn tool boxes off.
Wizards
- Lots of the controls now have control wizards which prompt you for the important settings. Hopefully wizards will be avaialble for all controls by the time 2.3.x becomes 2.4.0
Stock Databases
- Stock databases. Rekall will come with some stock databases (actually there is only one at present, the demo database, but more will be added over time) which can be used to create your own database. In addition, you can download stock databases from the web. See the Rekall section on downloading the database that runs this website!
Manual
- The manual can now be accessed via a dedicated manual viewer (loosely modelled on QTs assistant program).
Other stuff
- Lots of bug fixes, lots of other smaller additions.
Enhancements:
- 2.2.6 is the now latest stable release.
- Mostly bug fixes since 2.2.4, particularly a problem related (I believe) to the default style used by Fedora Core 4
<<lessBy this we mean that data is stored somewhere else in an SQL server, and Rekall is fundementaly just a tool to extract, display and update that data (of course, it does lots more than that, it does forms and reports and scripting and .... you get the idea).
It is database agnostic, and does not have any preferred database in the sense that Access(tm) uses the Jet. database engine (although the Windows version can use the Jet database engine via an ODBC driver).
Rekall can do lots of the things that you would expect of a database front-end (or if it cant, let us know!). You can design and use forms and reports, you can construct database queries, and you can import and export data (actually, you can copy data, import is just copy file to table, and export is just copy table to file). You can also create reusable components which you can use in forms and reports, to reduce application development time.
Rekall can be scripted using the the Python language. You can arrange that a script is executed when various events occur (for instance, when the user changes the value of a control).
Scripts can be associated directly with the event, but you can also store scripts in script modules for more general use. And, of course, you have full access to all the modules that are available for Python. Plus, Rekall has an integrated Python debugger with syntax highlighting.
RekallRevealed is run as a community website to support the GPL version of Rekall. Rekall is being included by some of the Linux distributions, and commercial components and support are available from TotalRekall and from theKompany.
Enhancements:
Dynamic Layouts
- Dynamic layouts allow you to create forms where controls automatically resize depending on settings such as font sizes, and as the user resizes the form. This is based on QTs layout engine, althougn only a restricted set of functions are available.
Tool Boxes
- Personally, the author is not a fan of tool boxes, but they seem to be popular, so Rekall now supports them. If you still prefer the old context menu mechanism, you can turn tool boxes off.
Wizards
- Lots of the controls now have control wizards which prompt you for the important settings. Hopefully wizards will be avaialble for all controls by the time 2.3.x becomes 2.4.0
Stock Databases
- Stock databases. Rekall will come with some stock databases (actually there is only one at present, the demo database, but more will be added over time) which can be used to create your own database. In addition, you can download stock databases from the web. See the Rekall section on downloading the database that runs this website!
Manual
- The manual can now be accessed via a dedicated manual viewer (loosely modelled on QTs assistant program).
Other stuff
- Lots of bug fixes, lots of other smaller additions.
Enhancements:
- 2.2.6 is the now latest stable release.
- Mostly bug fixes since 2.2.4, particularly a problem related (I believe) to the default style used by Fedora Core 4
Download (4.9MB)
Added: 2005-09-28 License: GPL (GNU General Public License) Price:
1497 downloads
Download (0.025MB)
Added: 2007-02-19 License: Perl Artistic License Price:
978 downloads
iTMS-4-ALL 0.2
iTMS-4-ALL is a Perl CGI script that allows you to search Apples iTunes Music Store from any Web browser. more>>
iTMS-4-ALL is a Perl CGI script that allows you to search Apples iTunes Music Store from any Web browser.
First of all, you can try the live script. Thanks to the people at Downhill Battle for hosting the script---they have also posted some interesting ideas about how the iTunes database can be used. Jason Terk has released a version of the script that uses CSS/XHTML, and you can try his live script.
You can also download the latest iTMS-4-ALL script package (v0.2, which works with Apples v4.5 server, thanks to nand). Three non-standard Perl modules are needed, but they are included (INET.pm and CBC.pm are pure Perl; Rijndael.pm needs to be compiled for your system). Extract the package, then run installRijndaelLocal.sh to build the Rijndael module. Copy the itms4all.pl script, the Crypt directory, the IO directory, and the auto directory into your servers cgi-bin directory. Make sure the itms4all.pl script is executable by your web server.
The script has been released under the GNU GPL.
You can can browse the store and access previews, but you cannot log in or purchase iTunes. David Hammerton has been working on logging in to iTunes.
Here is what I know about the iTunes Music Store Protocol so far:
1. iTunes communicates with Apple almost exclusively through HTTP [browsing the store and playing preview clips works through a web proxy, even with no direct connection to the Internet].
2. iTunes authentication (logging in so you can actually buy something) is not happening through HTTP [no requests hit my web proxy when iTunes tries to log in; logging in fails without a direct Internet connection].
3. iTunes fetches gzipped XML files from Apple to lay out its GUI (to display the store front, genre pages, and search results).
4. Every gzipped XML file is encrypted with AES-128 (Rijndael) in CBC mode. The CBC initialization vector is included in the HTTP header (x-apple-crypto-iv).
5. The AES key is 8a9dad399fb014c131be611820d78895. This key is hard-coded somehow in iTunes.
<<lessFirst of all, you can try the live script. Thanks to the people at Downhill Battle for hosting the script---they have also posted some interesting ideas about how the iTunes database can be used. Jason Terk has released a version of the script that uses CSS/XHTML, and you can try his live script.
You can also download the latest iTMS-4-ALL script package (v0.2, which works with Apples v4.5 server, thanks to nand). Three non-standard Perl modules are needed, but they are included (INET.pm and CBC.pm are pure Perl; Rijndael.pm needs to be compiled for your system). Extract the package, then run installRijndaelLocal.sh to build the Rijndael module. Copy the itms4all.pl script, the Crypt directory, the IO directory, and the auto directory into your servers cgi-bin directory. Make sure the itms4all.pl script is executable by your web server.
The script has been released under the GNU GPL.
You can can browse the store and access previews, but you cannot log in or purchase iTunes. David Hammerton has been working on logging in to iTunes.
Here is what I know about the iTunes Music Store Protocol so far:
1. iTunes communicates with Apple almost exclusively through HTTP [browsing the store and playing preview clips works through a web proxy, even with no direct connection to the Internet].
2. iTunes authentication (logging in so you can actually buy something) is not happening through HTTP [no requests hit my web proxy when iTunes tries to log in; logging in fails without a direct Internet connection].
3. iTunes fetches gzipped XML files from Apple to lay out its GUI (to display the store front, genre pages, and search results).
4. Every gzipped XML file is encrypted with AES-128 (Rijndael) in CBC mode. The CBC initialization vector is included in the HTTP header (x-apple-crypto-iv).
5. The AES key is 8a9dad399fb014c131be611820d78895. This key is hard-coded somehow in iTunes.
Download (0.054MB)
Added: 2006-06-24 License: GPL (GNU General Public License) Price:
1219 downloads
Download (2.7MB)
Added: 2006-09-28 License: Freely Distributable Price:
1121 downloads
Raw Socket Constructor 2.1a
Raw Socket Constructor provides a tool for sending packets from the console. more>>
Raw Socket Constructor provides a tool for sending packets from the console.
Raw Socket Constructor is a tool that uses the Libsock library to create arbitrary TCP, ICMP, UDP, TCP6, ICMP6, or UDP6 packets.
<<lessRaw Socket Constructor is a tool that uses the Libsock library to create arbitrary TCP, ICMP, UDP, TCP6, ICMP6, or UDP6 packets.
Download (0.008MB)
Added: 2007-03-22 License: GPL (GNU General Public License) Price:
950 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above 2 2 2.1a all wszystkie setup.exe search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed