| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Enumerator 0.07b |
windows | System->File Management | Free |
View Detail
|
|||||||||
Enumerator description Enumerator is built for easily performing specific operations on a large (or small) number of files Enumerator was developed to fulfill specific needs of webmasters, but soon turned Enumerator is built for easily performing specific operations on a large (or small) number of files. Due to its modular nature, it is easy to expand its functionality that suits your needs. |
||||||||||||||
| 2 | Connection Enumerator 1.03 Build 8.5 |
windows | Network Tools->Network Information | Free |
View Detail
|
|||||||||
Connection Enumerator is a very small application that will list all available LAN and RAS (dial-up) connections. Connection Enumerator also shows if LAN and RAS connection monitoring is natively supported by the system. Connection Enumerator is also used to figure out the name of dynamically-created RAS connectoid (e.g. the ones used by some proprietary services.) |
||||||||||||||
| 3 | Connection Enumerator 1.03 (Build 8.5) |
windows | Network Tools->Miscellaneous Network Tools | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 4 | Advanced Password Enumerator 1.1 |
windows | Utilities->Password Management | Free |
View Detail
|
|||||||||
| 5 | NetWatcher 1.52 |
windows | Network Tools->Miscellaneous Network Tools | Free |
View Detail
|
|||||||||
BSEditor: This is a NetWatcher- SMB monitor from NetView + network resources enumerator and pinger of selected computers |
||||||||||||||
| 6 | MdacTools 1.0 |
windows | Software Development->Databases and Networks | $15.00 |
View Detail
|
|||||||||
MdacTools is a combination of five OLE DB tools: - CSBuilder: builds connection strings using the Data Links wizard. - PRBrowser: browses properties and property sets. - SCViewer: schema viewer with restriction setting capability. - Enumerator: displays the OLE DB root enumerator and connects to the selected datasource using the provider-specific prompt. Selecting a child enumerator, displays its contents. - Table Analizer: lists all user tables from the selected provider, and shows schema and editable data for the selected table. - Command Processor: processes queries against data sources and returns editable data if available. |
||||||||||||||
| 7 | MdacTools 1.1 |
windows | Software Development->Misc Programming Tools | $15.00 |
View Detail
|
|||||||||
MdacTools is a combination of five OLE DB tools:- CSBuilder: builds connection strings using the Data Links wizard. - PRBrowser: browses properties and property sets. - SCViewer: schema viewer with restriction setting capability and mdac typ.exe. - Enumerator: displays the OLE DB root enumerator and connects to the selected datasource using the provider-specific prompt. Selecting a child enumerator, displays its contents.- Table Analizer: lists all user tables from the selected provider, and shows schema and editable data for the selected table.- Command Processor: processes queries against data sources and returns editable data if |
||||||||||||||
| 8 | Netspyer 1.5 |
windows | Network Tools->Traceroute Whois Tools | $29 |
View Detail
|
|||||||||
|
||||||||||||||
| 9 | Smart PropertyGrid for .NET 2.0 |
windows | Software Development->Components Libraries | $199 |
View Detail
|
|||||||||
Smart PropertyGrid.Net is a useful Windows Forms component aimed at developers concerned by the shortcomings of the Microsoft PropertyGrid which is nevertheless a very useful tool... but only in Visual Studio. Here are some key features of "Smart PropertyGrid for NET": · completely dynamic content at run-time or reflection · infinite number of nested categories and properties · many built-in inplace editors · customization of properties and global appearance · different enumerator types to browse properties · optional navigation with the TAB key · custom property value validation · it knows all related framework classes like TypeConverters · UITypeEditors · custom sorting · hyperlinked properties |
||||||||||||||
| 10 | Netspyer 2 |
windows | Network Tools->Network Monitoring Info | Free |
View Detail
|
|||||||||
Netspyer is a firewall , network bandwidth utility and internet tools, all-in-one. Its a strong firewall, that allows you to add filters at the connection made from/to your computer, to monitor application internet activity and block them if necessary. You can monitor the open ports and allow the connection on only to the people you wish, so you can keep intruders away. It includes a lot of internet utilities like tcp/ip packet sniffer trace, telnet, TCP/IP table enumerator, Computer IPs enumerator, Download Bandwidth Meter, Port blocker, Trojan port list and information about every trojan, IP Configuration tools, hosts file Editor and more. Netspyer monitors your internet activity and draws a graph of the internet activity history. It also shows you the download / upload speed , the total transferring activity and it can show you the activity using an animated system tray icon for better monitoring Here are some key features of "Netspyer": · You can choose any Network Adapter and speed · Updated TCP/IP Table Viewing with process mapping and Filtering · Connections Monitoring · Connections Filtering and Rules · Application Internet Access Rules ( Application Firewall ) · TCP/IP Packet Sniffer/Analyzer ( with filters/rules ) · Graph representation of network activity · Downloading / Uploading Speed Monitor · Downloading / Uploading Traffic Monitor · System tray icon - ( Choose from 9 icon sets ) · Detailed Internet activity logging · NeMoG Manager. NeMoG = NEtspyer MOnitoring Group · Super Fast, multithread Port Scanner · Many powerful internet tools : · Ping · Telnet · TCP / IP Table enumerator · TCP , IP , ICMP , UDP network statistics · Whois Lookup · IP Configuration Tools ( Renew , Release, Flush and more... ) · Downloading Bandwidth Meter · HOSTS file editor · Port Blocker · Trojan Ports list and Informations · Computer IPs Enumerator · Trace route · IP <-> Domain Translator. ( DNS and Reversed DNS) · Web Search · Administrator Password lock · Sound Effects · Great Graphics · Updated User Friendly Interface Limitations: · 20 days trial · Time limit of 30 minutes which can be longer if you click on the advertisements |
||||||||||||||
| 11 | Apache Users 1.0 |
linux | Internet->HTTP | Free |
View Detail
|
|||||||||
Apache Users project is an Apache username enumerator, via /~username requests. This script uses a list of common system names like root, admin etc ... You should manually check the issue to establish the http return code, ie: 403 as this is needed for the command line. No native SSL support. USAGE apache.pl -h 1.2.3.4 -l names -p 80 (No SSL Support) -e 403 (http code) Sample script: use IO::Socket; use Getopt::Std; getopt ("h: l: p: e: "); use vars qw( $opt_h $opt_l $opt_p $opt_e ); if ((! $opt_h) || (! $opt_l ) || (! $opt_p ) || (! $opt_e)) { print "nUSAGE: apache.pl -h 1.2.3.4 -l names -p 80 (No SSL Support) -e 403 (http code)nn "; exit 1; }; $host = $opt_h; $list = $opt_l; $port = $opt_p; $num = $opt_e; open (LIST, "$list") or die "Unable to open $list ....$!"; &connect; exit 0; sub connect { foreach $name (< LIST >) { $connection = IO::Socket::INET->new ( Proto => "tcp", PeerAddr => "$host", PeerPort => "$port", ) or die "Cant CONNECT to $host on the Port specified.n"; $connection -> autoflush; chomp $name; print $connection "GET /~$name HTTP/1.0rnrn"; $results = < $connection >; if ( $results =~/($num)/g ) { print "$name exists on $hostn"; }; } close ($connection); sleep 1; }; close LIST; |
||||||||||||||
| 12 | DHTML News Creator 1.1 |
windows | Web Development->Web Design Tools | Free |
View Detail
|
|||||||||
TopNews DHTML News Creator is a tool to create professional looking fader news for your web , it give your web news slider with fade in and fade out effects, its easy but professional. You dont have to be good at DHTML or Javascript, all you have to do is a few steps to edit your news with a WYSIWYG (What You See Is What You Get) editor, then vivid web news comes out. TopNews NewsFader Creator is created by SWFKit. SWFKit is a tool to create s32-bit Windows applications from flash.It can not only customize projectors and Screen savers,but also create Installer for them. By using Macromedia Flash as your GUI, you can create coolest application! The FFish Script of SWFKit,is a script language similar to ActionScript,very easy to use! With Ffish Script,SWFKit give power to your application to access kinds of database,to realtime communication by Socket,to send and receive email, to read and write file, to access system registry, to play and record multimedia , to embed an ActiveX control,etc. FFish Script provides most objects and functions that defined in ECMA 262 language specification, plus many enhancements: Dialogs object, Shell Object, Enumerator Object, ActiveXObject object, RegKey Object, Ini Object, Shortcut Object, MCI Object, Mail Object, SendMail Object, RecvMail Object, Inet Object, SysInfo Object, Folder Object, File Object, Drive Object, Stream Object, Window Object, FlashPlayer Object, StringStream Object, Socket Object. You can start developing full applications with Flash now. Moreover, SWFkit provides you with a clip region maker, to create applications with custom shaped window,or even leave some region transparent. SWFKit also help your application make installer,generate serial number,create autorun CD ,and create screensaver out of flash, etc. |
||||||||||||||
| 13 | MUSK Codec Pack 5.1 |
windows | Video->Video Codecs | Free |
View Detail
|
|||||||||
A pack of codecs, including/understanding all that it is necessary to read all the findable videos on Internet and encoder in DivX 5 Pro, XviD, Real, QuickTime. The pack comprises a single interface of management in its kind. It makes it possible to decontaminate and reactivate the codecs in real time, to reinstall the codecs failing. MUSK Codec Pack 5.0 includes: Codecs DivX 3.11 Codec + Fraunhofer IIS MPEG Layer-3 Codec DivX 5.1.1 Pro Codec + Config DivX 5.1.1 Pro XviD Codec (Koepi v1.0.1-05/06/2004) + Config Real Media RV9/10 Codec + Real Media Splitter 1.0.0.9 DirectShow Filter + Config QuickTime Codec + Config 3ivX D4 v4.5.1 Codec + Config VP3 v3.2.5.0 Codec VP6 v6.1.0.2 Codec + Config Cyberlink MPEG2 Decoder (DvD) Elecard MPEG2 v2.0 Decoder (DvD) Filtres OGG Vorbis v0.9.9.5 Codecs + Encoder OGG Vorbis AC3 Dolby 5.1 Filter v0.70b + Config DivXG400 Codec Filter v2.83 + Config Morgan Stream Switcher Filter v0.9.9 FFDShow 06/17/2002 Filter + Config DivX AntiFreeze v0.4 Filter + Config VSFilter v1.0.0.9 (Gabest) Filter Matroska Gabest Filter v1.0.2.3 Tools DriveSpeed v2.0.0.1 (Nero) (to check CDR & CDRW speed and to repare it in case its detected wrong) InfoTool v2.0.7.0 (Nero) (shows information about your CDR/CDRW/DVD/DVDRW...) SysEnum v8.1.0.0 (enumerates Filters & Codecs on your system) StartUp v2.8.XP (let you see what applications starts with your computer a gives the possibily to change it) AviC FourCC Changer (to chage the header of an avi file) GSpot v2.21 (shows information about an .avi, codecs, resolution...) Media Player Classic v6.4.8.2 FR & US (media player supports all popular formats: QuickTime, RealMedia, WMV, DivX...) MUSK Media Player v0.5.65 FR (new media player by MUSK) MUSK Filter/Codec Enumerator v1.2 FR & US (Same as SysEnum but this one let you fix problems, by MUSK) VideoToolBox v1.0.0.58 Multilangue (Same as GSpot, multilangual) Whats New in This Release: · UPDATE RV9 -> RV9 + RV10 · UPDATE XviD (Koepi) v1.0-09/05/2004 -> v1.0.1-05/06/2004 · UPDATE FFDShow v0.4.6 -> 06/17/2002 · UPDATE DirectVobSub v2.23 -> VSFilter v1.0.0.9 (Gabest) · UPDATE VideoToolBox v0.9.3.43 -> v1.0.0.58 · ADDED Elecard MPEG2 CoDec v2.0 · BUG MUSKv5 Update Function REPAIRED |
||||||||||||||
| 14 | Helix 1.9 |
linux | System->Linux Distributions | Free |
View Detail
|
|||||||||
Helix is a customized distribution of the Knoppix Live Linux CD. Helix is more than just a bootable live CD. With Helix you can still boot into a customized Linux environment that includes customized linux kernels, excellent hardware detection and many applications dedicated to Incident Response and Forensics. Helix has been modified very carefully to NOT touch the host computer in any way and it is forensically sound. Helix wil not auto mount swap space, or auto mount any attached devices. Helix also has a special Windows autorun side for Incident Response and Forensics. Helix focuses on Incident Response & Forensics tools. It is meant to be used by individuals who have a sound understanding of Incident Response and Forensic techniques. Here are some key features of "Helix": Incident Response / Forensics Tools: · sleuthkit 1.73 : Brian Carriers replacement to TCT. · autopsy 2.03 : Web front-end to sleuthkit. · mac-robber 1.0 : TCTs graverobber written in C. · fenris .07 : debugging, tracing, decompiling. · wipe 0.20-1 : Secure file deletion. · MAC_Grab : e-fense MAC time utility. · GRAB 1.2.2 : e-fense Forensic Acquisition Utility. · foremost 0.69 : Carve files based on header and footer. · fatback 1.3 : Analyze and recover deleted FAT files. · md5deep 1.2 : Recursive md5sum with db lookups. · sha15deep 1.2 : Recursive sha1sum with db lookups. · dcfldd 1.0 : dd replacement from the DCFL. · sdd 1.31-3 : Specialized dd w/better preformance. · PyFLAG 0.74 : Forensic and Log Analysis GUI. · Faust 1.13 : Analyze elf binaries and bash scripts. · e2recover 1.0 : Recover deleted files in ext2 file systems. · Pasco 1.0 : Forensic tool for Internet Explorer Analysis. · Galleta 1.0 : Cookie analyzer for Internet Explorer. · Rifiuti 1.0 : "Recycle BIN" analyzer. · Bmap 1.0.20 : Detect & Recover data in used slackspace. · Ftimes 3.4.0 : A toolset for forensic data acquisition. · chkrootkit 0.44-2 : Look for rootkits. · rkhunter 1.2.0 : Rootkit hunter. · ChaosReader 0.94 : Trace tcpdump files and extract data. · lshw A.01.07 : Hardware Lister. · logsh : Log your terminal session (Borrowed from FIRE). · ClamAV 0.80.1 : ClamAV Anti Virus Scanner. · F-Prot : F-Prot Anti Virus Scanner. · 2 Hash 0.2 : MD5 & SHA1 parallel hashing. · glimpse 4.18.0 : Indexing and query system. · Outguess 0.2-5 : Stego detection suite. · Stegdetect 0.5-6 : Stego detection suite. · Regviewer : Windows Registry viewer. · Chntpw : Change Windows passwords. · Grepmail 5.3030 : Grep through mailboxes. · logfinder 0.1 : EFF logfinder utility. · Retriever 1.0 : Find pics/movies/docs/web-mail. Network Utilities: · LinNeighboorhood 0.6.5-3 : Linux network neighborhood. · ntop 3.0-3 : Network top, protocol analyzer. · iptraf 2.7.0-5 : Network monitor. · arping 2.01-3 : Ping hosts by MAC. · arpwatch 2.1a13-1 : Another arp tool. · macchanger 1.4.0-1 : Change MAC addr. · mtr 0.58-1 : X11 traceroute. · samba 3.0.5-1 : File and print services. Servers: · sshd 3.8p1 : Secure encrypted communications. · vnc 3.3.7-1 : Virtual Network Computing. · freenx : SSH based Virtual Network Computing. · netcat 1.10 : Read and write data across network. · cryptcat 1.10 : Encrypted netcat. Packet Sniffers and Assemblers: · ethereal 0.10.6-1 : Network traffic analyzer. · ettercap 0.7.0-1 : Sniff on a switched network and more. · ngrep 1.42-1 : Network grep. · tcpdump 3.8.3-3 : The network dump program. · tcpreplay 2.2.2-1 : Replay tcpdump or snoop captures. · dsniff 2.4b1-6 : Doug Songs wonderful sniffing utilities. · ipgrab 0.9.9-1 : Pen Register, only gets TCP Header. · TcpTrack 1.1.3-1 : Sniffer for TCP connections. · Sguil 0.5.3 : Sguil Client. Vulnerability Assessment: · nessus 2.0.10a-6 : Vulnerability scanner. · nasl : Command line to nessus. · nmap 3.55-1 : Network port mapper. · hping2 2.rc3-3 : Port scanner, host enumerator, etc. Wireless Tools: · aircrack 1.4 : Better WEP crack than Airsnort. · airsnort 0.2.4a-1 : WLAN Sniffer, crack WEP. · airtraf 1.1 : Another wireless locator tool. · kismet 2004.04.R1-5 : The best 802.11x monitoring tool. · kismet log viewer 0.9.7 : Log management program. · macchanger 1.5.0-1 : Change your MAC address. · gpsd 2.09-1 : GPS Daemon. · Misc : Other wireless information. Whats New in This Release: · Version 1.9 has been officially released. This is not a large update due to work going on for version 2.0 but many of the tools have been updated. NTFS-3g has been update to 1.710, Sleuthkit 2.09, Autopsy 2.08, Scalpel 1.60 to carve data, EnCase Linen 6.01, AFFlib 2.3.0 and libewf-20070512 for image acquisition. The Kernel was also updated to 2.6.18.7. In addition several tools on the Live Windows side have been updated/added: WFT 3.01 and Nigilant32. |
||||||||||||||
| 15 | ActiveX/ASP Multi Dictionary object 1.0 |
windows | Software Development->Net | $34 |
View Detail
|
|||||||||
|
||||||||||||||
| 16 | HTML Help COM Assistant 1.0 |
windows | Software Development->Visual Basic Tools | Free |
View Detail
|
|||||||||
COM Assistant is an application that will generate professional HTML Help technical documentation for your COM/ActiveX components. COM Assistant will analyze your component and create table of content, full documentation for your enumerators, object, properties and methods. The MIDL Help String attribute, standard COM way of documenting the components objects and properties, is included in your documentation as well. COM Assistant uses standard HTML file as templates so you can fully customize them to suit your needs. Created documentation follows the standard Microsoft style for component technical documentation. |
||||||||||||||
| 17 | ASP/VBA/COM ActiveX Dictionary object 1.0 |
windows | Software Development->Components Libraries | $34 |
View Detail
|
|||||||||
ASP/VBA/COM ActiveX Dictionary object is a multithreaded dictionary object. Lets you work with unique/non-unique keys in VBA/VBS/ASP/WHS envinronment (share application/session variables in ASP) Here are some key features of "ASP VBA COM ActiveX Dictionary object": · Free-threaded hi-speed dictionary algorithm. · Unique/nonunique keys (map/multimap). · Connect to another dictionary object in the same process (Connect method). · Lock and Unlock methods to synchronize multithreaded tasks. · Items and Keys enumerators. · Other functionality · Share Application/Session variables in ASP (see ASP - Share application variables sample) Limitations: · 60 day trial |
||||||||||||||
| 18 | HTML Help COM Assistant 1.01 |
windows | Software Development->Visual Basic Tools | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 19 | ActiveX/ASP Multi Dictionary object 1.1.2 |
windows | Software Development->Active X | Free |
View Detail
|
|||||||||
BrothersoftEditor/ Multithreaded dictionary object. Lets you work with unique/non-unique keys in VBA/VBS/ASP/WHS envinronment (share application/session variables in ASP) Features Free-threaded hi-speed dictionary algorithm (better than Scripting.Dictionary, which is apartment threaded) Unique/nonunique keys (map/multimap). Connect to another dictionary object in the same process (Connect method). Lock and Unlock methods to synchronize multithreaded tasks. Items and Keys enumerators. Bulk remove dictionary elements (using RemoveAll method). Bulk Save and Load dictionary data to/from a disk. |
||||||||||||||
| 20 | C#CommDog 1.0.2039.30061 |
windows | Software Development->Debugging | Free |
View Detail
|
|||||||||
C#CommDog is a software development tool that detects all missing or incorrect comment sections in each C# file of a C# project (.csproj). It automatically generates the required comments in a consistent format. So it achieves an optimum of comment quality, which increases the maintainability of the entire project. The integrated parser reads the files and tests if the given comments are complete. The tool supports all relevant fragments such as file headers, classes, enumerators, members, methods and constructors, except method bodies. In a detailed view all problematic parts are shown. The integrated generator writes the missing annotations directly into the source file. A backup file will be created automatically. Special tags in the generated comments let the developer instantly find and add the missing comment contents. Already existing comments are detected and will be formatted uniformly in Java-doc or C#-doc style. For quick access the source files can be opened directly from C#CommDog. So you can achieve maximum comment quality in a minimum of time. Limitations: · 4 weeks trial |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
