Friday, November 4, 2011

How to: Steal media from any website

Ingredients:
Mozilla Firefox
Video Download Helper
DownThemAll!
Half decent Brain ( I wasn't able to find a link for those who doesn't have a brain. :P )

Intro:

Video Download Helper steals any playing/displaying content from any website.
Play the video or audio from any website and you would see that in your toolbar the Video DownloadHelper's icon starts to rotate and a small down pointing arrow appears besides the icon.



Click on the down arrow.
You should see different resolutions and file formats.
Hover over any of the item and wait for a side menu to open.
Click on DownThemAll!.
Select a folder to download and click start.
Thats all, folks! ! !

Saturday, October 1, 2011

Disassemblers for Windows, Linux and Mac

OllyDbg

OllyDbg is an x86 debugger that emphasizes binary code analysis, which is useful when source code is not available. It traces registers, recognizes procedures, API calls, switches, tables, constants and strings, as well as locates routines from object files and libraries. Version 1.10 is the final 1.x release. Version 2.0 has recently been released, and OllyDbg has been rewritten from the ground up in this release. The software is free of cost, but the shareware license requires users to register with the author.

odbg110.zip
________________________________________________________________________________

The IDA Pro Disassembler and Debugger is an interactive, programmable, extendible, multi-processor disassembler hosted on Windows, Linux, or Mac OS X. IDA Pro has become the de-facto standard for the analysis of hostile code, vulnerability research and COTS validation. See this executive overview for a summary of its features and uses.

http://thepiratebay.org/torrent/6470027/Hex_Rays_IDA_Professional_6.1_x86_Cracked
________________________________________________________________________________





SoftICE is a kernel mode debugger for Microsoft Windows. Crucially, it is designed to run underneath Windows such that the operating system is unaware of its presence. Unlike an application debugger, SoftICE is capable of suspending all operations in Windows when instructed. For driver debugging this is critical due to how hardware is accessed and the kernel of the operating system functions. Because of its low-level capabilities, SoftICE is also popular as a software cracking tool.


http://www.4shared.com/file/TnGlr_g0/SoftICE_405_for_2K-Xp.html
http://www.4shared.com/file/ZcOR_T9y/SoftICE_405_for_Win9x_si405w9x.html
________________________________________________________________________________
Hiew

 Hiew (short for Hacker's view) is a popular console hex editor for Windows written by Eugene Suslikov (sen). Amongst its feature set is its ability to view files in text, hex and disassembly mode. The program is particularly useful for editing executable files such as COFF, PE or ELF executable files.



HIEW.html

________________________________________________________________________________

Others:

WDasm
W32Dasm for Win7
Hexarc.zip

Tuesday, August 9, 2011

Make Electronics by Charles Platt

Make Electronics by Charles Platt:

Want to learn the fundamentals of electronics in a fun, hands-on way?
With Make: Electronics, you'll start working on real projects as soon as you crack open the book. Explore all of the key components and essential principles through a series of fascinating experiments. You'll build the circuits first, then learn the theory behind them! Step-by-step instructions and more than 500 full-color photographs and illustrations will help you use -- and understand -- electronics concepts and techniques.

Pros:
Accurate, Concise, Easy to understand, Helpful, examples, Idiot Proof, Simplified, Well-written
Pass: cv0x00F
Make_Electronics_cv0x00F.tar.gz

Fundamentals of Electric Circuits Alexander 2001 ebook

Fundamentals of Electric Circuits 3rd ed by Charles Alexander

  
Links:
Fourth Edition solution:
    Fundamental_of_Electric_Circuits_4th_ed_cv0x00F.tar.gz
Password to all files: cv0x00F

Sunday, August 7, 2011

Advanced EFS Data recovery by Elcomsoft

Advanced EFS Data Recovery

Microsoft Encrypting File System (EFS) is an integral part of Microsoft Windows operating systems that enables users to protect their files against unauthorized access even from those who gain physical access to the hard disk or the computer that contains the encrypted files. Advanced EFS Data Recovery decrypts the protected files, and works in all versions of Windows 2000, XP, 2003, Vista, Windows Server 2008 and Windows 7. The recovery is still possible even when the system damaged, is not bootable, or when some encryption keys have been tampered with.
Advanced EFS Data Recovery recovers EFS-encrypted data that becomes inaccessible because of system administration errors such as removing users and user profiles, misconfiguring data recovery authorities, transferring users between domains, or moving hard disks to a different PC.

Case Studies

Advanced EFS Data Recovery is a powerful data recovery tool that helps recovering the encrypted files under various circumstances.
  • EFS-protected disk inserted into a different PC
  • Deleted users or user profiles
  • User transferred into a different domain without EFS consideration
  • Account password reset performed by system administrator without EFS consideration
  • Damaged disk, corrupted file system, unbootable operating system
  • Reinstalled Windows or computer upgrades
  • Formatted system partitions with encrypted files left on another disk
Trial version available for download:

AEFSDR v4.02
AEFSDR v4.20

Saturday, July 30, 2011

Proxy inside Mozilla Firefox

This is a tutorial on using the free proxies on the internet.
Intro:
    A proxy server is a server (a computer system or an application) that acts as an intermediary for requests from clients (you) seeking resources from other servers (websites you are seeking) . A client connects to the proxy server, requesting some service, such as a file, connection, web page, or other resource, available from a different server. This request is sent from the proxy server and reaches to the client by some prearranged means.

Ok, enough of this background thing. Here's how to use the proxy.
  1. Go to http://www.freeproxylists.com/us.html or any free proxy site Google?.
  2. Check out their listings. For the above site click on the detailed list link.
  3. Select any server and note down the I.P. Address and the port mentioned.
  4. Open up the preferences of your Mozilla Firefox.
  5. Go to the last tab saying "Advanced".
  6. Click on the sub-tab "Network"->"Settings".
  7. Click on the radio button "Manual Proxy configuration". And check the box "Use this proxy for all protocols." if unchecked.
  8. Enter the (the one noted in the step 3) IP of the server in the edit-box of HTTP Proxy and select the port.
  9. Click OK. And you are finished.
ENJOY!

For the most awesome list comment with your e-mail. ;-)

Disclaimer: This page is intended for information purpose only. You may not hold me responsible for use of this information and/or the potential effects. Follow at your own risk.

Tuesday, July 19, 2011

Quine in C

A quine is a computer program which takes no input and produces a copy of its own source code as its only output.
The idea of self-reproducing programs first appeared in Paul Bratley and Jean Millo's article "Computer Recreations: Self-Reproducing Automata" in 1972. Bratley first became interested in self-reproducing programs after seeing the first known such program written in Atlas Autocode at Edinburgh in the 1960s by the University of Edinburgh lecturer and researcher Hamish Dewar. 
Source:en.wikipedia.org 
Here's a cute quine by me: 
#include<stdio.h>
void main() { char p[]="#include <stdio.h> void main() { char p[]=%c%s%c; printf(p,34,p,34);}";
printf(p,34,p,34);} //The 34 in decimal is for the double quotes.;-)

Output:
Same as the code. But in one line.Enjoy!!!