IlMetU.net
anche a mollo nel latte rimango croccante!
Now viewing all posts in programmazione

George Hotz jailbreaking PS3

gennaio 27th 2010

George Hotz, the man responsible for “jailbreaking” the iPhone platform, has released the “coveted” PlayStation 3 exploit he announced last week, the one that means the console is essentially “hacked.”
So begins the cycle of homebrew developers finding new ways to run custom code on the PS3 and Sony Computer Entertainment engineers attempting to squash exploits [...]

Read On Commenti disabilitati

Google Sharing …

gennaio 21st 2010

GoogleSharing is a special kind of anonymizing proxy service, designed for a very specific threat. It ultimately aims to provide a level of anonymity that will prevent google from tracking your searches, movements, and what websites you visit. GoogleSharing is not a full proxy service designed to anonymize all your traffic, but rather something designed [...]

Read On Commenti disabilitati

0day!

gennaio 15th 2010

Upcoming events:
[January 11, January 17] – week of directory server bugs, 0days in
Novell eDirectory, Sun Directory, Tivoli Directory..etc
[January 18 - January 24] – week of web server bugs, 0days in Zeus Web Server, Sun Web Server, Apache(?)..etc
[January 25 - February 1] – week of database bugs, inspired by our
research for DBJIT Toolset, 0days in Mysql, [...]

Read On Commenti disabilitati

Chimera sniffer in python

dicembre 14th 2008

Oggi ho pubblicato sulla wiki.troppoavanti.me uno script in python, chimera.py

#!/usr/bin/python
import scapy
import string
traffic=scapy.sniff(iface=”eth0″, store=1, count=100)
wcapy.wrpcap(“save_tmp.pcap”,traffic) #salva i 100 pacchetti
print “Protocol: “, Protocols[str(traffic[0].payload.proto)] #visualizza il protocollo
print “Ip Source: “, traffic[0].payload.src #visualizza l’ip sorgente
print “Ip Destination: “, traffic[0].payload.dst #visualizza l’ip di destinazione
print “Mac Source: “, traffic[0].src #visualizza il mac di sorgente
print “Mac Destination: “, traffic[0].dst #visualizza il mac [...]

Read On Commenti disabilitati