|
游客,本帖隐藏的内容需要积分高于 1 才可浏览,您当前积分为 0
资源信息:
书评,网评,新影评尽在DigBook.Net上的所有内容来自用户的提交,为用户提供一个基于Dig的分享书评,网摘,新影评的平台.用户可以提交自己喜欢的文章,自己的博客文章,及实用资源等.用户提交文章可以通过\我要发表\向导轻松完成.http://www.digbook.net/
Reverse Engineering -12in1- [MUST HAVE] (AIO)
*******************************************************************************************
Legal Disclaimer…
* This software was designed for webmasters and authorized personal only.
* The author of this software does not encourage anyone to use this software in illegal means and does not take liability for your actions.
* Neither the author nor the hoster of this site take liability for damages arising from usage of these tools and utilities.
* If you attempt to knock this back on me cuz you end up in jail, ill send the big boy in the cell next to you named Bubba a $100.00 a month to do really dirty things to you.
* To give you an example of what Bubba will do to you, watch the movie Deliverance.
*******************************************************************************************
Contents:
Cain & Abel
Charon
John the Ripper
Munta Bunta Brute Forcer
Raptor 3
Triton
Net Tools v4.5.74
Net Detective v5.19
WhoIs v2.0
IP Net Info
XL Delete v1.3
NeoTrace Pro v3.25 (ret)
-----------------------------------------------------------------
Cain & Abel
is a password recovery tool for Microsoft Operating Systems. It allows easy recovery of various kind of passwords by sniffing the network, cracking encrypted passwords using Dictionary, Brute-Force and Cryptanalysis attacks, recording VoIP conversations, decoding scrambled passwords, revealing password boxes, uncovering cached passwords and analyzing routing protocols.
The program does not exploit any software vulnerabilities or bugs that could not be fixed with little effort. It covers some security aspects/weakness present in protocol's standards, authentication methods and caching mechanisms; its main purpose is the simplified recovery of passwords and credentials from various sources, however it also ships some "non standard" utilities for Microsoft Windows users.
Cain & Abel has been developed in the hope that it will be useful for network administrators, teachers, security consultants/professionals, forensic staff, security software vendors, professional penetration tester and everyone else that plans to use it for ethical reasons. The author will not help or support any illegal activity done with this program. Be warned that there is the possibility that you will cause damages and/or loss of data using this software and that in no events shall the author be liable for such damages or loss of data.
CODEhttp://www.oxid.it
http://www.oxid.it/ca_um/
-----------------------------------------------------------------
IPNetInfo
is a small utility that allows you to easily find all available information about an IP address: The owner of the IP address, the country/state name, IP addresses range, contact information (address, phone, fax, and email), and more.
Description
IPNetInfo is a small utility that allows you to easily find all available information about an IP address: The owner of the IP address, the country/state name, IP addresses range, contact information (address, phone, fax, and email), and more.
This utility can be very useful for finding the origin of unsolicited mail. You can simply copy the message headers from your email software and paste them into IPNetInfo utility. IPNetInfo automatically extracts all IP addresses from the message headers, and displays the information about these IP addresses.
How does it work ?
The IP address information is retrieved by sending a request to the whois server of ARIN. If ARIN doesn't maintain the information about the requested IP address, a second request is sent to the whois server of RIPE, APNIC, LACNIC or AfriNIC.
After the IP address information is retrieved, IPNetInfo analyzes the Whois record and displays it in a table.
Notice: From time to time, the WHOIS server of ARIN is down and doesn't respond to WHOIS requests from IPNetInfo, and thus IPNetinfo fails to retrieve the IP address. When such a thing occurs, simply try again later.
Using IPNetInfo
IPNetInfo is standalone program, so it doesn't require any installation process or additional DLLs. In order to start using it, simply copy the executable file (ipnetinfo.exe) to any folder you like, and run it.
When you run IPNetInfo, the "Choose IP Addresses" window appears. You have to type one or more IP addresses separated by comma, space, or CRLF characters. If you want to find the origin of email message that you received, copy the entire message header to the clipboard, and then click the "Paste" button.
You can also use the following advanced options:
* Resolve IP addresses: If you select this option, all IP addresses are converted back to the host name. The resolved host name is displayed in 'Resolved Name' column.
* Convert host names to IP addresses: If you select this option, all host names that you type will be converted to IP addresses. You can use this option if you want to know who owns the IP address of specific Web site (For example: If you type 'www.yahoo.com', you'll get the information about the IP address of Yahoo Web site)
You should not select this option for message headers.
* Load only the last IP address: In most email messages, the last IP address in the message headers is the address of the computer that sent the message. So if you select this option for message headers, you'll get the desired IP address in most cases (but not in all of them !). However, for finding the origin of unsolicited mail, it's not recommended to use this option, because many spammers add fake headers and IP addresses in order to deceive the user who tries to trace them. When you try to trace the origin of unsolicited mail, you should examine all IP addresses that appears in the message headers.
After choosing the desired options and IP addresses, click the 'OK' button in order to start retrieving the IP addresses information.
After the data is retrieved, the upper pane displays a nice summary of all IP addresses that you requested, including the owner name, country, network name, IP addresses range, contact information, and more. You can view this summary in your browser as HTML report, copy it to the clipboard, or save it as text/HTML/XML file.
When you click a particular item in the upper pane, the lower pane displays the original WHOIS record. You can copy the original WHOIS records to the clipboard, or save them to text file by using "Save Whois Records" option.
Notice:
The IP addresses summary in the upper pane displays only partial information, If you want to contact the owner of IP address for reporting about spam/abuse problems, you should also look at the full Whois record in the lower pane.
// 全局复制函数(抽离出来,避免重复定义)
function copyEd2kFullLink(btn) {
// 从按钮的data属性读取链接(兼容所有特殊字符)
var link = btn.dataset.ed2kLink || btn.getAttribute("data-ed2k-link");
if(!link) {
alert("链接读取失败,请手动复制!");
return;
}
// 清理可能的转义字符,还原原始链接
link = link.replace(/&/g, "&").replace(/"/g, "\"").replace(/'/g, "'");
var t = document.createElement("textarea");
t.style.position = "fixed";
t.style.top = "-9999px";
t.style.left = "-9999px";
t.value = link.trim();
document.body.appendChild(t);
// 强制选中所有内容(兼容超长/特殊字符链接)
t.focus();
try {
t.setSelectionRange(0, link.length);
} catch (e) {
t.select(); // 兼容低版本浏览器
}
try {
var success = document.execCommand("copy");
alert(success ? "ED2K链接已复制!" : "复制失败,请手动复制:\n" + link);
} catch (e) {
alert("复制失败,请手动复制:\n" + link);
}
document.body.removeChild(t);
}
|