reverse lookup
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 421
HTML::BBReverse 0.07
HTML::BBReverse is a Perl module to convert HTML to BBCode and back. more>>
HTML::BBReverse is a Perl module to convert HTML to BBCode and back.
SYNOPSIS
use HTML::BBReverse
my $bbr = HTML::BBReverse->new();
# convert BBCode into HTML
my $html = $bbr->parse($bbcode);
# convert generated HTML back to BBCode
my $bbcode = $bbr->reverse($html);
HTML::BBReverse is a pure perl module for converting BBCode to HTML and is able to convert the generated HTML back to BBCode.
And why would you want to reverse the generated HTML? Well, when you have a nice dynamic website where you and/or visitors can post messages, and in those messages BBCode is used for markup. In normal cases, your website has a lot more pageviews than edits, and saving all those messages as HTML will be a lot faster than saving them as the original BBCode and parsing them to HTML for every visit.
So now all BBCode gets converted to HTML before it will be saved, but what if you want to edit a message? Just reverse the generated HTML back to BBCode, edit your message, and save it as HTML again.
<<lessSYNOPSIS
use HTML::BBReverse
my $bbr = HTML::BBReverse->new();
# convert BBCode into HTML
my $html = $bbr->parse($bbcode);
# convert generated HTML back to BBCode
my $bbcode = $bbr->reverse($html);
HTML::BBReverse is a pure perl module for converting BBCode to HTML and is able to convert the generated HTML back to BBCode.
And why would you want to reverse the generated HTML? Well, when you have a nice dynamic website where you and/or visitors can post messages, and in those messages BBCode is used for markup. In normal cases, your website has a lot more pageviews than edits, and saving all those messages as HTML will be a lot faster than saving them as the original BBCode and parsing them to HTML for every visit.
So now all BBCode gets converted to HTML before it will be saved, but what if you want to edit a message? Just reverse the generated HTML back to BBCode, edit your message, and save it as HTML again.
Download (0.009MB)
Added: 2006-08-10 License: Perl Artistic License Price:
676 downloads
Digest::MD5::Reverse 1.0
Digest::MD5::Reverse provides MD5 Reverse Lookup. more>>
Digest::MD5::Reverse provides MD5 Reverse Lookup.
MD5 sums (see RFC 1321 - The MD5 Message-Digest Algorithm) are used as a one-way hash of data. Due to the nature of the formula used, it is impossible to reverse it.
This module provides functions to search several online MD5 hashes database and return the results (or return undefined if no match found).
We are not breaking security. We are however making it easier to lookup the source of a MD5 sum.
Version restrictions:
- It is very slow, because it will search each library until match found or all library search finished.
<<lessMD5 sums (see RFC 1321 - The MD5 Message-Digest Algorithm) are used as a one-way hash of data. Due to the nature of the formula used, it is impossible to reverse it.
This module provides functions to search several online MD5 hashes database and return the results (or return undefined if no match found).
We are not breaking security. We are however making it easier to lookup the source of a MD5 sum.
Version restrictions:
- It is very slow, because it will search each library until match found or all library search finished.
Download (0.002MB)
Added: 2007-03-31 License: Perl Artistic License Price:
945 downloads
Free Unlisted Phone Numbers Lookup Tool 2.0
With the Free Unlisted Phone Numbers Lookup Tool, You Can Input Unknown Numbers and Run them Across Databases of Phone Numbers to See if the Owners I... more>> <<less
Download (532KB)
Added: 2009-04-14 License: Freeware Price: Free
195 downloads
Apache::ReverseProxy 0.07
Apache::ReverseProxy is an Apache mod_perl reverse proxy. more>>
Apache::ReverseProxy is an Apache mod_perl reverse proxy.
SYNOPSIS
# In Apache config file
< Location / >
SetHandler perl-script
PerlHandler Apache::ReverseProxy
PerlSetVar ReverseProxyConfig /usr/local/apache/conf/rproxy.conf
< /Location >
# In rproxy.conf / http://www.cpan.org/
This is a reverse proxy module for Apache with mod_perl. It is intended to replace Apache::ProxyPass. Given a list of URI mappings, this module will translate an incoming URI, retrieve the contents for the translated URI, and return the contents to the original requestor. This module allows you to specify exact matching (instead of regular expression matching) and handles query string translations.
CONFIGURATION
You will need to set the ReverseProxyConfig perl variable in Apache to the path of the reverse proxy mapping file. For example:
< Location / >
SetHandler perl-script
PerlHandler Apache::ReverseProxy
PerlSetVar ReverseProxyConfig /usr/local/apache/conf/rproxy.conf
# Optional configuration items:
#PerlSetVar ReverseProxyChain http://proxy.mycompany.com:8888/
#PerlSetVar ReverseProxyNoChain mycompany.com
< /Location >
ReverseProxyChain specifies a proxy server to use. This is sometimes called proxy chaining when one proxy server uses another proxy server. The ReverseProxyNoChain directive can specify a domain to not use proxy chaining on.
Reverse proxy configuration files have three fields, each separated by white space. The first field is the uri to look for, the second field is the replacement uri, and the third field is optional and allows you to specify comma separated options for the mapping. The only option that is currently supported is the exact parameter, which will make the reverse proxy use exact matching for the first parameter instead of using regular expressions. This feature is convenient when the first parameter contains characters that may need to be escaped or quotemetaed. Exact options are evaluated first. If there isnt an exact match, regular expression matches are performed. Configuration files may contain comments, which start with a pound sign. For example:
/news/ http://www.news.com/
/ http://www.perl.com/
/stats http://localhost/stats exact
# /stats maps exactly to http://localhost/stats
# /stats/b maps to http://www.perl.com/stats/b
/french/news http://www.news.com/?language=french
# /french/news/index -> http://www.news.com/index?language=french
# /french/news/index?a=b -> http://www.news.com/index?language=french&a=b
<<lessSYNOPSIS
# In Apache config file
< Location / >
SetHandler perl-script
PerlHandler Apache::ReverseProxy
PerlSetVar ReverseProxyConfig /usr/local/apache/conf/rproxy.conf
< /Location >
# In rproxy.conf / http://www.cpan.org/
This is a reverse proxy module for Apache with mod_perl. It is intended to replace Apache::ProxyPass. Given a list of URI mappings, this module will translate an incoming URI, retrieve the contents for the translated URI, and return the contents to the original requestor. This module allows you to specify exact matching (instead of regular expression matching) and handles query string translations.
CONFIGURATION
You will need to set the ReverseProxyConfig perl variable in Apache to the path of the reverse proxy mapping file. For example:
< Location / >
SetHandler perl-script
PerlHandler Apache::ReverseProxy
PerlSetVar ReverseProxyConfig /usr/local/apache/conf/rproxy.conf
# Optional configuration items:
#PerlSetVar ReverseProxyChain http://proxy.mycompany.com:8888/
#PerlSetVar ReverseProxyNoChain mycompany.com
< /Location >
ReverseProxyChain specifies a proxy server to use. This is sometimes called proxy chaining when one proxy server uses another proxy server. The ReverseProxyNoChain directive can specify a domain to not use proxy chaining on.
Reverse proxy configuration files have three fields, each separated by white space. The first field is the uri to look for, the second field is the replacement uri, and the third field is optional and allows you to specify comma separated options for the mapping. The only option that is currently supported is the exact parameter, which will make the reverse proxy use exact matching for the first parameter instead of using regular expressions. This feature is convenient when the first parameter contains characters that may need to be escaped or quotemetaed. Exact options are evaluated first. If there isnt an exact match, regular expression matches are performed. Configuration files may contain comments, which start with a pound sign. For example:
/news/ http://www.news.com/
/ http://www.perl.com/
/stats http://localhost/stats exact
# /stats maps exactly to http://localhost/stats
# /stats/b maps to http://www.perl.com/stats/b
/french/news http://www.news.com/?language=french
# /french/news/index -> http://www.news.com/index?language=french
# /french/news/index?a=b -> http://www.news.com/index?language=french&a=b
Download (0.006MB)
Added: 2007-07-30 License: Perl Artistic License Price:
816 downloads
Enhanced Reverse Pimpage 2.3 Beta 1
Enhanced Reverse Pimpage is an enhanced version of the original rpimp by Matt Miller. more>>
Enhanced Reverse Pimpage project is an enhanced version of the original rpimp by Matt Miller. Reverse Pimpage was designed to allow you to access a computer that is behind a firewall from outside that firewall itself.
The way it accomplishes this is by having the client (the computer behind the firewall) send a SYN request to a certain port at certain intervals. The computer that will access the client must run the server program, and when the time interval is up it will connect.
Once its connected, the client telnets to itself and routes data back and forth between the two.
NEW FEATURES
rpimp server
[ client box ] - -------> [ rpimp server box ]<<less
The way it accomplishes this is by having the client (the computer behind the firewall) send a SYN request to a certain port at certain intervals. The computer that will access the client must run the server program, and when the time interval is up it will connect.
Once its connected, the client telnets to itself and routes data back and forth between the two.
NEW FEATURES
rpimp server
[ client box ] - -------> [ rpimp server box ]<<less
Download (0.17MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
952 downloads
Geo::Lookup::ByTime 0.0.2
Geo::Lookup::ByTime is a Perl module to lookup location by time. more>>
Geo::Lookup::ByTime is a Perl module to lookup location by time.
SYNOPSIS
use Geo::Lookup::ByTime;
$lookup = Geo::Lookup::ByTime->new( @points );
my $pt = $lookup->nearest( $tm );
Given a set of timestamped locations guess the location at a particular time. This is a useful operation for, e.g., adding location information to pictures based on their timestamp and a GPS trace that covers the same time period.
INTERFACE
new( [ points ] )
Create a new object optionally supplying a list of points. The points may be supplied as an array or as a reference to an array. Each point may be a reference to a hash containing at least the keys lat, lon and time or a reference to an object that supports accessor methods called latitude, longitude and time.
If a coderef is supplied it is assumed to be an iterator that may be called repeatedly to yield a set of points.
add_points( [ points ] )
Add points. The specification for what constitutes a point is the same as for new.
nearest( $time [ , $max_dist ] )
Return a hash indicating the estimated position at the specified time. The returned hash has lat, lon and time keys like this:
my $best = {
lat => 54.29344,
lon => -2.02393,
time => $time
};
Returns undef if the position cant be computed. By default a position will be calculated for any point that lies within the range of time covered by the reference points. Optionally $max_dist may be specified in which case undef will be returned if the closest real point is more than that many metres away from the computed point.
If the requested time coincides exactly with the timestamp of one of the points the returned point will be at the same location as the matching point. If the time falls between the timestamps of two points the returned point will be linearly interpolated from those two points.
In an array context returns a list containing the synthetic point at the specified time (i.e. the value that would be returned in scalar context), the closest real point and the distance between the two in metres
my ($best, $nearest, $dist) = $lookup->nearest( $tm );
get_points()
Return a reference to an array containing all the points in ascending time order.
time_range()
Return as a two element list the time range from earliest to latest of the points in the index. Returns undef if the index is empty.
hav_distance($pt, ...)
Exportable function. Computes the Haversine distance in metres along the line described by the points passed in. Points must be references to hashes with keys lat and lon.
<<lessSYNOPSIS
use Geo::Lookup::ByTime;
$lookup = Geo::Lookup::ByTime->new( @points );
my $pt = $lookup->nearest( $tm );
Given a set of timestamped locations guess the location at a particular time. This is a useful operation for, e.g., adding location information to pictures based on their timestamp and a GPS trace that covers the same time period.
INTERFACE
new( [ points ] )
Create a new object optionally supplying a list of points. The points may be supplied as an array or as a reference to an array. Each point may be a reference to a hash containing at least the keys lat, lon and time or a reference to an object that supports accessor methods called latitude, longitude and time.
If a coderef is supplied it is assumed to be an iterator that may be called repeatedly to yield a set of points.
add_points( [ points ] )
Add points. The specification for what constitutes a point is the same as for new.
nearest( $time [ , $max_dist ] )
Return a hash indicating the estimated position at the specified time. The returned hash has lat, lon and time keys like this:
my $best = {
lat => 54.29344,
lon => -2.02393,
time => $time
};
Returns undef if the position cant be computed. By default a position will be calculated for any point that lies within the range of time covered by the reference points. Optionally $max_dist may be specified in which case undef will be returned if the closest real point is more than that many metres away from the computed point.
If the requested time coincides exactly with the timestamp of one of the points the returned point will be at the same location as the matching point. If the time falls between the timestamps of two points the returned point will be linearly interpolated from those two points.
In an array context returns a list containing the synthetic point at the specified time (i.e. the value that would be returned in scalar context), the closest real point and the distance between the two in metres
my ($best, $nearest, $dist) = $lookup->nearest( $tm );
get_points()
Return a reference to an array containing all the points in ascending time order.
time_range()
Return as a two element list the time range from earliest to latest of the points in the index. Returns undef if the index is empty.
hav_distance($pt, ...)
Exportable function. Computes the Haversine distance in metres along the line described by the points passed in. Points must be references to hashes with keys lat and lon.
Download (0.015MB)
Added: 2007-01-24 License: Perl Artistic License Price:
1003 downloads
Wikipedia Lookup Extension 0.3.2
Lookups up the selected word in the Wikipedia encyclopedia. more>> Wikipedia Lookup Extension 0.3.2 is a powerful tool that makes it quick and easy to look up the selected word in the Wikipedia encyclopedia.<<less
Added: 2009-07-15 License: MPL Price: FREE
19 downloads
Network Query Tool 1.9
Network Query Tool is a one-stop solution for obtaining information about a domain name or an IP address. more>>
Network Query Tool is a one-stop solution for obtaining information about a domain name or an IP address.
Instead of manually using a variety of shell commands, or visiting numerous websites to investigate a host, just load Network Query Tool in your browser and enter the hostname or IP. NQT does the rest, as is evidenced by this sample output.
Main features:
- Reverse lookup - resolves an IP address to a hostname (if one exists) or vice versa
- DNS query - aka Dig, requires a dig binary on your system
- Whois (WWW) - gets domain registration information. Now supporting just about every known TLD, gTLD, and ccTLD.
- Whois (IP) - gets IP owner information. Supports all IP blocks maintained by ARIN (US), RIPE (Europe), JPNIC (Japan), APNIC (China/Asia-Pacific), BRNIC (Brazil), LACNIC (Latin America), AFRINIC (Africa), and KRNIC (Korea).
- Check port - Determine whether or not a port on the target host is open. Defaults to port 80.
- Ping - performs a 5-packet ping to the target, requires a ping binary.
- Traceroute - performs a traceroute to the target, requires a traceroute binary.
<<lessInstead of manually using a variety of shell commands, or visiting numerous websites to investigate a host, just load Network Query Tool in your browser and enter the hostname or IP. NQT does the rest, as is evidenced by this sample output.
Main features:
- Reverse lookup - resolves an IP address to a hostname (if one exists) or vice versa
- DNS query - aka Dig, requires a dig binary on your system
- Whois (WWW) - gets domain registration information. Now supporting just about every known TLD, gTLD, and ccTLD.
- Whois (IP) - gets IP owner information. Supports all IP blocks maintained by ARIN (US), RIPE (Europe), JPNIC (Japan), APNIC (China/Asia-Pacific), BRNIC (Brazil), LACNIC (Latin America), AFRINIC (Africa), and KRNIC (Korea).
- Check port - Determine whether or not a port on the target host is open. Defaults to port 80.
- Ping - performs a 5-packet ping to the target, requires a ping binary.
- Traceroute - performs a traceroute to the target, requires a traceroute binary.
Download (0.015MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
961 downloads
pyRacerz 0.2
pyRacerz is a multiplayer top view 2D racing game. more>>
pyRacerz is a multiplayer top view 2D racing game. It features multiplayer (on the same computer), tournaments, high scores, replays, 6 tracks (really 12, because each track can be used Normal or Reverse), 9 cars, a basic robot player, 3 different levels of difficulty, and a music player (it can play the .ogg files locating in the musics directory).
Main features:
- Multiplayer (on the same computer)
- Tournament
- Challenge mode (for single user)
- Hi Scores
- Replays
- 8 tracks (1 to be unlocked)(in fact 16 because each track can be used Normal or Reverse)
- 9 cars
- Basic robot player
- 3 different levels of difficulty
- Music player (pyRacerz can play the .ogg files locating in the musics directory)
<<lessMain features:
- Multiplayer (on the same computer)
- Tournament
- Challenge mode (for single user)
- Hi Scores
- Replays
- 8 tracks (1 to be unlocked)(in fact 16 because each track can be used Normal or Reverse)
- 9 cars
- Basic robot player
- 3 different levels of difficulty
- Music player (pyRacerz can play the .ogg files locating in the musics directory)
Download (4.5MB)
Added: 2005-10-17 License: GPL (GNU General Public License) Price:
1468 downloads
Zebedee 2.5.3
Zebedee is a simple program to establish an encrypted, compressed tunnel for TCP/IP or UDP data transfer between two systems. more>>
Zebedee is a simple program to establish an encrypted, compressed "tunnel" for TCP/IP or UDP data transfer between two systems.
This allows data from, for example, telnet, ftp and X sessions to be protected from snooping. You can also use compression, either with or without data encryption, to gain performance over low-bandwidth networks.
Zebedee is made with next goals in mind:
Provide client and server functionality under both UNIX/Linux and Windows.
Be easy to install, use and maintain with little or no configuration required.
Have a small footprint, low wire protocol overhead and give significant traffic reduction by the use of compression.
Use only algorithms that are either unpatented or for which the patent has expired.
Be entirely free for commercial or non-commercial use and distributed under the term of the GNU General Public Licence (see LICENCE.txt for details).
For further information on how to use Zebedee see the filezebedee.html in the distribution (or the manual page for zebedee(1) under UNIX -- it is basically the same text). Example
configuration files are also provided.
Versions of Zebedee in the 2.4.x series are stable, "production" versions. The development series, containing new features, but less well tested is numbered 2.5.x.
Enhancements:
- Fix file descriptor leak when IP address lookup fails.
- Fix problem with running a server in "reverse" mode and detached -- only
- apparent on Windows.
- Add "maxconnections" to alleviate DoS attack.
- Check for target port 0 to avoid DoS.
- Linux 64-bit port (a result of the "Linux on POWER" contest) courtesy of
- Stew Benedict . Use the "linux64" OS target.
- Upgraded version of bzip2 and zlib.
<<lessThis allows data from, for example, telnet, ftp and X sessions to be protected from snooping. You can also use compression, either with or without data encryption, to gain performance over low-bandwidth networks.
Zebedee is made with next goals in mind:
Provide client and server functionality under both UNIX/Linux and Windows.
Be easy to install, use and maintain with little or no configuration required.
Have a small footprint, low wire protocol overhead and give significant traffic reduction by the use of compression.
Use only algorithms that are either unpatented or for which the patent has expired.
Be entirely free for commercial or non-commercial use and distributed under the term of the GNU General Public Licence (see LICENCE.txt for details).
For further information on how to use Zebedee see the filezebedee.html in the distribution (or the manual page for zebedee(1) under UNIX -- it is basically the same text). Example
configuration files are also provided.
Versions of Zebedee in the 2.4.x series are stable, "production" versions. The development series, containing new features, but less well tested is numbered 2.5.x.
Enhancements:
- Fix file descriptor leak when IP address lookup fails.
- Fix problem with running a server in "reverse" mode and detached -- only
- apparent on Windows.
- Add "maxconnections" to alleviate DoS attack.
- Check for target port 0 to avoid DoS.
- Linux 64-bit port (a result of the "Linux on POWER" contest) courtesy of
- Stew Benedict . Use the "linux64" OS target.
- Upgraded version of bzip2 and zlib.
Download (0.17MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1203 downloads
vsdump 0.0.40
vsdump is an ALT Linux (www.altlinux.ru) project of VSD/VSS file format reverse engineering. more>>
vsdump is an ALT Linux (www.altlinux.ru) project of VSD/VSS file format reverse engineering. The project site is http://www.gnome.ru/projects/vsdump_en.html.
This project was started with Ian Redfern results (http://www.redferni.uklinux.net/visio/) and was greatly improved by knowledges extracted from libgsf. For discovered parts of format look into docs/vsdformat.txt.
<<lessThis project was started with Ian Redfern results (http://www.redferni.uklinux.net/visio/) and was greatly improved by knowledges extracted from libgsf. For discovered parts of format look into docs/vsdformat.txt.
Download (0.45MB)
Added: 2007-07-31 License: GPL v3 Price:
522 downloads
SDE for Eclipse (CE) for Linux 4.2
UML Plugin for Eclipse: UML diagrams, Rational Rose, XMI import/export,... more>> SDE for Eclipse is a UML CASE tool/plug-in tightly integrated with Eclipse. This UML modeling software supports full software lifecycle - analysis, design, implementation, testing and deployment. This UML CASE tool helps you build quality applications faster, better and cheaper. You can draw all types of UML diagrams in Eclipse, reverse engineer Java code to class diagrams, generate Java code and generate documentation.
SDE Features:
+Support UML version 2.1
+Business Workflow diagram
+Mind Mapping Diagram (New Feature)
+Requirement Modeling (Enhanced)
+Callout and Freehand shape (New Feature)
+Nicknamer - create translated copies of model (New Feature)
+Model Transitor (New Feature)
+User Interface Designer
+Data flow diagram
+Use Case Details Editor - An all-in-one environment for specifying a use cases details including general model specification and use case descriptions
+EJB Diagram - Visualize EJB systems
+EJB Code Generation
+ORM support - generate Java objects from database
+Database generation - ERD to database tables
+Database reverse - existing DBMS to ERD (Enhanced)
+Reverse engineering - code to model, code to diagram
+Reverse engineering Java, C++, XML Schema, XML, .NET exe/dll, CORBA IDL, XML Schema and Python
+Code Generation - model to code, diagram to code
+Java Round-trip engineering
+Automatic diagram layout
+Modeling collaboratively with VP Teamwork Server, CVS, Subversion and Perforce (New Feature)
+Shape editor
+Support Stored Procedure and Database Trigger (New Feature)
+Export diagrams to JPG, PNG, SVG, EMF, PDF
+PDF/HTML/MS Word Report generator
+Multilingual support
+More...
Other UML Modeling Tools / UML Plugins:
Java Platform (Windows/Linux/Mac OS X):
+SDE for Oracle JDeveloper
+SDE for Borland JBuilder
+SDE for IntelliJ IDEA
+SDE for NetBeans
+SDE for Sun ONE
+SDE for WebLogic Workshop
Windows Platform:
+SDE for Microsoft Visual Studio
+More SDE...<<less
Download (128MB)
Added: 2009-04-24 License: Freeware Price: Free
182 downloads
Other version of SDE for Eclipse (CE) for Linux
License:freeware
rdns 1.0
rdns provides a tiny little UNIX utility that will preform reverse dns lookups. more>>
rdns provides a tiny little UNIX utility that will preform reverse dns lookups.
This simple little program takes an IP address as an argument, and spits out the hostname that it finds. Its a simple little program designed to be used in scripts, primarily.
Syntax:
rdns [-s]
Optionally, you can append -s onto the command line. This will prevent rdns from printing any available aliases.
Note: Sometimes rdns will just seem to hang there during the gethostbyname() call. This usually occurs when you try to resolve addresses private IP addresses, like 192.168.*, 10.* and so forth. This is usually BAD for scripting, so try to have all the possible hosts in your /etc/hosts.
<<lessThis simple little program takes an IP address as an argument, and spits out the hostname that it finds. Its a simple little program designed to be used in scripts, primarily.
Syntax:
rdns [-s]
Optionally, you can append -s onto the command line. This will prevent rdns from printing any available aliases.
Note: Sometimes rdns will just seem to hang there during the gethostbyname() call. This usually occurs when you try to resolve addresses private IP addresses, like 192.168.*, 10.* and so forth. This is usually BAD for scripting, so try to have all the possible hosts in your /etc/hosts.
Download (0.008MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
921 downloads
PatternText Creator 1.1
For volume editing of text base or text containing file(s). more>> PatternText Creator is a program for volume editing of text base or text containing file(s). This is ideal for work where a professional may need to replace the same sentence or word in multiple file(s). This program also offers additional features instead of just simple find and replace. The user can choose find and append, prepend with a custom string; find and remove the target find text string; find and reverse the order of the target find text string.<<less
Download (400KB)
Added: 2009-04-22 License: Freeware Price: Free
192 downloads
THC-RWWWShell 2.0
Reverse-WWW-Tunnel-Backdoor is proof-of-concept Perl program for the paper Placing Backdoors through Firewalls. more>>
THC-RWWWShell is proof-of-concept Perl program for the paper "Placing Backdoors through Firewalls".
It allows communicating with a shell through firewalls and proxy servers by imitating webtraffic. The master/slave relation is reversed, therefore no listening ports are used on the target machine.
THC-RWWWShell was verified to work on Linux, Solaris, AIX and OpenBSD
BUGS: some Solaris machines: select(3) is broken, wont work there on some systems Perls recv is broken (AIX, OpenBSD) ... we cant make proper receive checks here. Workaround implemented.
Enhancements:
- HTTP 1.0 protocol compliance (finally)
<<lessIt allows communicating with a shell through firewalls and proxy servers by imitating webtraffic. The master/slave relation is reversed, therefore no listening ports are used on the target machine.
THC-RWWWShell was verified to work on Linux, Solaris, AIX and OpenBSD
BUGS: some Solaris machines: select(3) is broken, wont work there on some systems Perls recv is broken (AIX, OpenBSD) ... we cant make proper receive checks here. Workaround implemented.
Enhancements:
- HTTP 1.0 protocol compliance (finally)
Download (0.005MB)
Added: 2006-03-08 License: GPL (GNU General Public License) Price:
1341 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 reverse lookup 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