Ping your blog, website, or RSS feed for Free Free Backlink Service, Links Building 4 Free Page Ranking Tool

1 Memasang Sertifikat Java di Sony Ericsson



Pada kesempatan kali ini cahaya info ingin membagi sedikit ilmu seputar handphone, kalian semua pasti sudah ada yang tau apa itu Sertifikat Java. dan apa kegunaan sertifikat java. Dengan memasang sertifikat java kalian tidak perlu lagi melihat sebuah peringatan "ijinkan menulis data / Ijinkan membaca data" pasti kalian sangat kesal kan, apalagi kita menggunakan aplikasi java SMS Bomber saat ingin mengirim pesan pasti ada peringatan "ijinkan mengirim pesan" coba kalo kita mau kirim 100 Sms bomber, apa kita harus konfirmasi sampai 100x. hehehe..

Tanpa panjang lebar langsung saja kita praktekan caranya, kali ini saya menggunakan HP Sony K510i karena pada judul postingnya kan memasang di hp Sony Ericsson. tidak mungkin kanpake hp Nokia.. upss udah ah balik ke topik.

1// Download Sertifikatnya dimari Download
2// Gunakan XS++ v3.1 Sedot
3// Kabel Data SE
4// Driver Kabel data Sedot Lagi

Kalo alat tempurnya sudah disiapkan sekarang tinggal kita jalankan step by stepnya, Extrak file Darkman_sertifikat.zip dengan menggunakan Winrar/Winzip. nanti akan ada 2 file didalamnya.


Langkah instalasi driver extrak K510_signed_drivers.rar.  matikan hp kamu, pasang kabel USB pada komputer. >> tekan "c" pada hp kamu pada saat kamu tekan "c" langsung colokan kabel datanya pada hp. nanti akan ada peringatan ada hadware baru. pilih aja next, sampai Finish.

Langkah installasi driver selesai, sekarang saatnya beraksi ikuti langkah - langkah berikut ini :
Buka XS++

Pilih Connect >> saat itu juga tekan "c" dan colokan kabel USB kamu. kalau udah terhubung pilih FSXtm seperti gambar di bawah ini :



disisi kanan kamu akan melihat folder system dari hp kamu yang meliputi
//ifs
//system
//tpa
//usb
Buka folder TPA >> PRESENT >> CUSTOM > masukan File customize_upgrade.xml dan exp.cer kalau sudah selesai tekan tombol shutdown.
udah selesai deh sekarang tinggal kita cek certifikat yang kita masukan udah masuk dalam hp kita apa belum.. untuk cek nya kamu nyalakan hp, kamu cari di setting >> konektifitas >> internet setting >>security >> java certifucate lihat certifikat paling bawah dengan nama darkman. jika sudah ada berarti hp kamu sudah berhasil disertifikati. sekarang tinggal berburu aplikasi java yang bersertifikat darkman, pada posting selanjutnya saya akan membagi ilmu cara mensertifikati aplikasi java.
cukup sekalian dulu ya kawan - kawan...
[Read More...]


0 Tool Buat Hack Warnet



koleksi Tool atau program yang wajib saya dibawah saat di warnet.

Disable dan Enable CMD
Option Explicit

'Declare variables
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
Dim enab, disab, jobfunc, itemtype

Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKCU\Software\Policies\Microsoft\Windows\System\"
p = p & "DisableCMD"
itemtype = "REG_DWORD"
mustboot = "Sukses" & vbCR & "Hancurkan Bro!!"
enab = "ENABLED"
disab = "DISABLED"
jobfunc = "CMD is now "

'This section tries to read the registry key value. If not present an
'error is generated. Normal error return should be 0 if value is
'present
t = "Confirmation"
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number

if errnum <> 0 then
'Create the registry key value for DisableCMD with value 0
WSHShell.RegWrite p, 0, itemtype
End If

'If the key is present, or was created, it is toggled
'Confirmations can be disabled by commenting out
'the two MyBox lines below

If n = 0 Then
n = 1
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & disab & vbCR & mustboot, 4096, t)
ElseIf n = 1 then
n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & enab & vbCR & mustboot, 4096, t)
End If


Disable dan Enable Regedit
'Enable/Disable Registry Editing tools
'© Doug Knox - rev 12/06/99
'This code may be freely distributed/modified as long as it remains free of charge
'http://www.icpug.org.uk/national/features/030607fe.htm
'Edited by PatheticCockroach - http://patheticcockroach.com

Option Explicit
'Declare variables
Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle
Dim jobfunc, itemtype

On Error Resume Next

Set WSHShell = WScript.CreateObject("WScript.Shell")
val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
itemtype = "REG_DWORD"
jobfunc = "Registry Editing Tools are now "
ttl = "Result"

'reads the registry key value.
rr = WSHShell.RegRead (val)
rr2 = WSHShell.RegRead (val2)

toggle=1
If (rr=1 or rr2=1) Then toggle=0

If toggle = 1 Then
WSHShell.RegWrite val, 1, itemtype
WSHShell.RegWrite val2, 1, itemtype
Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)
Else
WSHShell.RegDelete val
WSHShell.RegDelete val2
Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)
End If

Disable dan Enable TaskManager
'Enable/Disable Task Manager
'By PatheticCockroach - based on an idea by Doug Knox
'© 2005 MPAM Rebooted - http://patheticcockroach.com
'This code may be freely distributed/modified as long as it remains free of charge

Option Explicit
'Declare variables
Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle
Dim jobfunc, itemtype

On Error Resume Next

Set WSHShell = WScript.CreateObject("WScript.Shell")
val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr"
val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr"
itemtype = "REG_DWORD"
jobfunc = "Task Manager is now "
ttl = "Result"

'reads the registry key value.
rr = WSHShell.RegRead (val)
rr2 = WSHShell.RegRead (val2)

toggle=1
If (rr=1 or rr2=1) Then toggle=0

If toggle = 1 Then
WSHShell.RegWrite val, 1, itemtype
WSHShell.RegWrite val2, 1, itemtype
Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)
Else
WSHShell.RegDelete val
WSHShell.RegDelete val2
Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)
End If

Copy Paste code diatas, dan salin ke notepad simpan dengan format .vbs, untuk mengenable dan disable cukup klik 2x file tersebut.

Tool lain yang mungkin kamu butuhkan.
Hack AntiExe
const HKEY_CLASSES_ROOT = &H80000000
const HKEY_CURRENT_USER = &H80000001

QUOT = chr(34)
strComputer = "."

On error resume next

Tanya = MsgBox("Bobol exe dgn registry"& _
vbNewLine & "Siap Bobol?", 36,"BoBol Exe")

If Tanya = 6 Then 'Bila dipilih YA

Set objRegistry = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &strComputer & "\root\default:StdRegProv")
objRegistry.CreateKey HKEY_CLASSES_ROOT, ".sexy"
objRegistry.SetStringValue HKEY_CLASSES_ROOT,".sexy",,"exefile"
objRegistry.SetStringValue HKEY_CLASSES_ROOT,".sexy","Content Type","application/x-msdownload"

objRegistry.CreateKey HKEY_CLASSES_ROOT, ".sexy\PersistentHandler"
objRegistry.SetStringValue HKEY_CLASSES_ROOT,".sexy\PersistentHandler",,"{098f2470-bae0-11cd-b579-08002b30bfeb}"

objRegistry.CreateKey HKEY_CURRENT_USER, "Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
objRegistry.SetDWORDValue HKEY_CURRENT_USER,"Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced","HideFileExt",0

Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colProcessList = objWMIService.ExecQuery _
("SELECT * FROM Win32_Process WHERE Name = 'explorer.exe'")
For Each objProcess in colProcessList
objProcess.Terminate()
Next

set objShell = createobject("Wscript.Shell")
objShell.Run "explorer.exe"

msgbox "Copi file exe, rename menjadi file sexy, lalu jalankan",vbInformation,"Bobol Exe"
End If
Copy ke notepad dan simpan dengan nama bobolexe.vbs

UndeepFreeze versi 7

Download Disini
[Read More...]


2 Photo Shine 3.5 Full



In the world of images, maybe a lot of ways that can be used to enhance your shots. Starting from editing the color, brightness, adding effects and affixing the template. However, to use a template, you pretty hard to do it. Because first you have to find a template or a frame to suit your photo and you should be adept at combining these two photos with these frames. But wait, now has available a lot of software that can combine your photos with frames or templates easily and quickly because with just a few clicks away. One of them is Picget PhotoShine 3.5.

Picget PhotoShine 3.5 gives you an easy way to create a collection of photos by adding your images to a large selection of beautiful templates. For example, you can add your photos into the template classical love, pink girl style templates, templates cartoon baby, or a magazine cover template and the other with only one click away at PhotoShine 3.5.

The main features Picget PhotoShine 3.5:

1) Easy to use
Only with one click, you can add your photos into the template that you like.

2) Themes Style of 9, already includes more than 700 beautiful templates.
9 themes include: GIRL, BABY, LOVE, BOARD, DREAM, MAGAZINE, CALENDAR, Frames and Other. It all amounted to more than 700 templates that already contained in PhotoShine 3.5, which you will have more than 700 options to make your photos become increasingly attractive.

To download Picget PhotoShine 3.5 Full Version, please click the download link below:
http://hotfile.com/dl/99548128/b43d444/photo-shine-3.5-full.rar.html
[Read More...]


11 Tutorial membuat facebook dari Jcow




Hai semua pada kesempatan kali ini saya ingin berbagi informasi kepada kalian semua, saya membuat artikel ini khusus bagi yang belum bisa, buat yang sudah bisa syukur deh sudah bisa... wkwkkwk!!!
kalian pasti sudah tau kan situs yang sekarang lagi banyak di bicarain orang??.. itu loh.. itu.... salingsapa.com, yang katanya sie facebook buatan anak SMP.. (hOak).

Coba kunjungi salingsapa.com, kemudian silakan klik Vew Page Source-nya... Maka di sana akan ditemukan bahwa situs tersebut dibangun dengan CMS Jcow.

Dari situ kalian sudah bisa menyimpulkan, anak SMP saja bisa kenapa kita tidak?... hahaha...
langsung saja deh saya kasih panduan step by step nya bagaimana membuat website seperti situs salingsapa.com itu..

Peralatan yang dibutuhkan sangatlah sederhana.
Alamat yang saya gunakan untuk test adalah http://test.cahayainfo.com/jcow.4.1

  • Jika kalian sudah daftar dan akun kamu sudah aktif. bisa langsung mengupload file yang sudah kalian download. (jika belum jelas cara upload bisa cari di om google)
  • Nah pastikan semua file sudah semuanya masuk pada FTP kita, sekarang tinggal kita test deh.
  • Contohnya saya daftar hosting dengan alamat test.cahayainfo.com . cara mengeceknya ketik alamat ini di bar kamu :
http://test.cahayainfo.com/jcow.4.1/install.php
  • warna merah kamu ganti dengan alamat hosting kamu.
  • Bila muncul seperti gambar dibawah ini berarti hampir SUKSES

  • Sekarang kita harus buat database nya dulu, bagaimana cara buatnya yahh.. hmm....
  • Masuk ke CPanel 000webhost. 
  • Pilih MySQL
  • Isi Form nya dulu.
 
  • Kalo udah Pilih Create database.
  • Nanti kamu akan mendapatkan code seperti ini.
$mysql_host = "mysql1.000webhost.com";
$mysql_database = "a2534698_test";
$mysql_user = "a2534698_test";
$mysql_password = "password kamu";
    • Proses pembuatan database Selesai.
    • Sekarang kamu buka halaman untuk install http://test.cahayainfo.com/jcow.4.1/install.php (jangan lupa yang merah ganti alamat kamu)
    • Masukin deh datanya, susuai database yang barusan kita buat tadi.
    • Jangan lupa cmod nya ganti 777. 
    • Kalo udah berhasil akan ada yang seperti ini.

    • Sekarang kalo sudah ada gambar yang diatas itu, kamu hapus file install.php nya.
    • Selesai Tinggal kamu akses saja alamat kamu. contohnya punya saya ini http://test.cahayainfo.com/jcow.4.1
    Sekian dulu ya, kalo masih binggung coment aja atau cari di google.com.
    [Read More...]


    1 COOKIES hotfile Update 14 Februari



    c171ece4e31fb812b94eaa88848981582882076ccaf3a89f255bd085d6460d8d

    d229bab0d081c760bcdcfddbd1d5814e9604adfa9fb50b64da0f56f9d2f2f019

    if you are confused about how to use, read this article http://www.cahayainfo.com/2011/02/hotfile-cookies-9-februari-2011.html
    [Read More...]


    0 Aleo Flash Intro Banner Maker + 2 Path



    Create Flash Intros, Flash banners, Flash slideshows and ecards in just a few clicks!




    Flash Intro and Banner Maker is a Flash authoring tool to help you create Flash intros, AD banners and ecards with ease. There is no need for knowledge of Flash development studio and Actionscripts, all you need is to input texts and select from premade customizable background effects and text animation effects. The properties of texts are customizable, including font style, size, width and height scale, transparency, rotation, border, fill style etc.

    1. Key Features

    * Wizard style user interface, extremely easy to use;
    * Customize width, height, frame rate of Flash movie;
    * Add border to Flash movie;
    * Add MP3 or WAV file to Flash movie as background sound effect;
    * Add preloader to Flash movie;
    * Add multiple images or Flash movies to background;
    * Lots of background effects to select from, all of them are customizable;
    * Add multiple background effects to Flash movie;
    * Set background of Flash movie as transparent, solid color, linear gradient color, radial gradient color;
    * Display images as dynamic effects, or display as static images on background;
    * Display texts as dynamic effects, or display as static texts on background;
    * Display animated texts and images one by another, or set up incoming time and duration time of each text or image respectively.
    * Unlimited stages of animated text and image effects;
    * Unlimited lines of text effect in one stage;
    * Customize font style, size, width and height scale, transparency, rotation, border of text, set fill style of text as solid color, linear gradient color and radial gradient color;
    * Set different font style of texts in one line;
    * Lots of text animation effects to select from, all of them are customizable;
    * Set web link of texts;
    * Customize timing of text effect;
    * Open web page when Flash movie stops or when user clicks on Flash movie;
    * Publish Movie as Flash SWF, GIF image and AVI video.
    * Generate HTML code to include Flash movie in your web page.

    2. How to Order

     For different kinds of users, we offer two license types: Personal license and Commercial license.
     For more details, please goto the order page: http://www.aleosoft.com/order.html

    3. Installation
     Step1: Download the zip archive(flashbannermaker.zip) from http://www.aleosoft.com/download.html, then open the file with your usual archive program, WinZip for example.
     Step2: Launch setup.exe by double-clicking, then follow the on-screen instructions.

    Download here : http://adf.ly/VFYZ
    aleo.fibm.v3.6-patch : http://adf.ly/VFZo
    patch AT4RE : http://adf.ly/VFar
    [Read More...]


    0 Boom Wall Facebook



    Hi all the same I'll see you again, this time I will give way how to send a lot of facebook wall. it was curious how it could possibly do. "in this world nothing is impossible". Well just follow the step by step which I will write below.

    1. Go to your facebook account.
    2. Open the following address http://facebook.com/aplikasi.dinding click the like.
    3. Go to this address http://adf.ly/OKks "skip ads"


    4. see picture below


    5. if you've entered the next phase, you will definitely see an image like below.


    explanation:
    Send a thumb = send 40 thumbs at the same time.
    Send MP3 = Sending MP3 music into a wall target
    Send Image = Send a picture to the wall target
    Boom Wall = Sending 25 unique to the wall paper targets at the same time
    [Read More...]


    Alexa

     

    Feedjit

    Popular Posts

    Return to top of page Copyright © 2010 | Platinum Theme Converted into Blogger Template by HackTutors