cmonhackns.n-stars.org
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Indonesian SWF Editor Community
 
HomeLatest imagesRegisterLog in
SELAMAT Datang Di Cmonhackns ===> Mulailah dari yang kecil... karena semua yang besar dulunya juga kecil..

 

 Cara membuat Spammer sendiri

Go down 
4 posters
Go to page : 1, 2  Next
AuthorMessage
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Cara membuat Spammer sendiri Empty
PostSubject: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Tue Jul 26, 2011 12:53 am

Alat2 di VB :
1) 1 ProggresBar
2) 3 TextBox
textbox1 dgn text = Spam Text
textbox2 dgn text = Interval(Masukkan Angka)
textbox3 dgn text = Masukkan Jumlah Spam Text
3) 3 Button
Button1 dgn text = Start
Button2 dgn text = Stop
Button3 dgn text = Start and Hide

4) 1 Timer

=================

1) Susunlah komponen tersebut seperti ini.........
[You must be registered and logged in to see this image.]

2) Klik 2 kali Button1,dan masukkan code berikut
Code:
Timer1.Interval = TextBox2.Text
        Timer1.Enabled = True

3) Klik 2 kali Button2,dan masukkan code berikut
Code:
Timer1.Enabled = False
        TextBox1.Text = "Spam Text"
        TextBox2.Text = "Interval"
        TextBox3.Text = "Masukkan Jumlah Spam Text"

4) Klik 2 kali Button3,dan masukkan code berikut
Code:
 Timer1.Interval = TextBox2.Text
        Timer1.Enabled = True
        Me.Hide()

5) Klik 2 kali TextBox1,dan masukkan code berikut
Code:
If TextBox1.Text = "" Then
            TextBox2.Enabled = False

        Else
            TextBox2.Enabled = True
        End If

6) Klik 2 kali TextBox2,dan masukkan code berikut
Code:
If TextBox2.Text = "" Then
            TextBox3.Enabled = False
        Else
            TextBox3.Enabled = True
        End If

7) Klik 2 kali Timer1,dan masukkan code berikut
Code:
If TextBox3.Text = "0" Then
            Timer1.Enabled = False
            TextBox1.Text = "Spam Text"
            TextBox2.Text = "Interval (Masukkan Angka)"
            TextBox3.Text = ""
        Else
            SendKeys.Send(TextBox1.Text)
            SendKeys.Send("{Enter}")
            TextBox3.Text = TextBox3.Text - 1
            ProgressBar1.Increment(5)
            If ProgressBar1.Value = ProgressBar1.Maximum Then
                ProgressBar1.Value = 0

            End If
            If TextBox3.Text = "0" Then
                ProgressBar1.Value = 0
            End If
        End If

dan the end...
Happy Coding

credit : Rieqyns13
Back to top Go down
http://rieqyns13.net
Crusher
Moderator
Moderator
Crusher


Jumlah posting : 1158
Join date : 2011-04-26
Age : 111
Lokasi : Di Naruto.Lagi perang

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Tue Jul 26, 2011 10:55 am

RieqyNS13 wrote:
Alat2 di VB :
1) 1 ProggresBar
2) 3 TextBox
textbox1 dgn text = Spam Text
textbox2 dgn text = Interval(Masukkan Angka)
textbox3 dgn text = Masukkan Jumlah Spam Text
3) 3 Button
Button1 dgn text = Start
Button2 dgn text = Stop
Button3 dgn text = Start and Hide

4) 1 Timer

=================

1) Susunlah komponen tersebut seperti ini.........
[You must be registered and logged in to see this image.]

2) Klik 2 kali Button1,dan masukkan code berikut
Code:
Timer1.Interval = TextBox2.Text
        Timer1.Enabled = True

3) Klik 2 kali Button2,dan masukkan code berikut
Code:
Timer1.Enabled = False
        TextBox1.Text = "Spam Text"
        TextBox2.Text = "Interval"
        TextBox3.Text = "Masukkan Jumlah Spam Text"

4) Klik 2 kali Button3,dan masukkan code berikut
Code:
 Timer1.Interval = TextBox2.Text
        Timer1.Enabled = True
        Me.Hide()

5) Klik 2 kali TextBox1,dan masukkan code berikut
Code:
If TextBox1.Text = "" Then
            TextBox2.Enabled = False

        Else
            TextBox2.Enabled = True
        End If

6) Klik 2 kali TextBox2,dan masukkan code berikut
Code:
If TextBox2.Text = "" Then
            TextBox3.Enabled = False
        Else
            TextBox3.Enabled = True
        End If

7) Klik 2 kali Timer1,dan masukkan code berikut
Code:
If TextBox3.Text = "0" Then
            Timer1.Enabled = False
            TextBox1.Text = "Spam Text"
            TextBox2.Text = "Interval (Masukkan Angka)"
            TextBox3.Text = ""
        Else
            SendKeys.Send(TextBox1.Text)
            SendKeys.Send("{Enter}")
            TextBox3.Text = TextBox3.Text - 1
            ProgressBar1.Increment(5)
            If ProgressBar1.Value = ProgressBar1.Maximum Then
                ProgressBar1.Value = 0

            End If
            If TextBox3.Text = "0" Then
                ProgressBar1.Value = 0
            End If
        End If

dan the end...
Happy Coding

credit : Rieqyns13
mantap gan.. affraid

kalo bisa ajarin cara bikin .exe gitu
Back to top Go down
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Tue Jul 26, 2011 9:37 pm

Kurohige wrote:
RieqyNS13 wrote:
Alat2 di VB :
1) 1 ProggresBar
2) 3 TextBox
textbox1 dgn text = Spam Text
textbox2 dgn text = Interval(Masukkan Angka)
textbox3 dgn text = Masukkan Jumlah Spam Text
3) 3 Button
Button1 dgn text = Start
Button2 dgn text = Stop
Button3 dgn text = Start and Hide

4) 1 Timer

=================

1) Susunlah komponen tersebut seperti ini.........
[You must be registered and logged in to see this image.]

2) Klik 2 kali Button1,dan masukkan code berikut
Code:
Timer1.Interval = TextBox2.Text
        Timer1.Enabled = True

3) Klik 2 kali Button2,dan masukkan code berikut
Code:
Timer1.Enabled = False
        TextBox1.Text = "Spam Text"
        TextBox2.Text = "Interval"
        TextBox3.Text = "Masukkan Jumlah Spam Text"

4) Klik 2 kali Button3,dan masukkan code berikut
Code:
 Timer1.Interval = TextBox2.Text
        Timer1.Enabled = True
        Me.Hide()

5) Klik 2 kali TextBox1,dan masukkan code berikut
Code:
If TextBox1.Text = "" Then
            TextBox2.Enabled = False

        Else
            TextBox2.Enabled = True
        End If

6) Klik 2 kali TextBox2,dan masukkan code berikut
Code:
If TextBox2.Text = "" Then
            TextBox3.Enabled = False
        Else
            TextBox3.Enabled = True
        End If

7) Klik 2 kali Timer1,dan masukkan code berikut
Code:
If TextBox3.Text = "0" Then
            Timer1.Enabled = False
            TextBox1.Text = "Spam Text"
            TextBox2.Text = "Interval (Masukkan Angka)"
            TextBox3.Text = ""
        Else
            SendKeys.Send(TextBox1.Text)
            SendKeys.Send("{Enter}")
            TextBox3.Text = TextBox3.Text - 1
            ProgressBar1.Increment(5)
            If ProgressBar1.Value = ProgressBar1.Maximum Then
                ProgressBar1.Value = 0

            End If
            If TextBox3.Text = "0" Then
                ProgressBar1.Value = 0
            End If
        End If

dan the end...
Happy Coding

credit : Rieqyns13
mantap gan.. affraid

kalo bisa ajarin cara bikin .exe gitu

klo bikin Exe pke Visual Basic 6.0,cuma klik File>>>Make Project exe,dan pilih folder
klo pke Visual Basic 2010,pilih Save All
[You must be registered and logged in to see this image.]

pilih folder dan ganti nama,dan Oke

saumpama km simpan di D:\Cmonhack\ dgn nama "Aplikasi1",trus km mau coba aplikasi exe yg dah km simpan di folder tadi,cara nya dgn buka D:\Cmonhack\Aplikasi1\Aplikasi1\bin\Debug\dan klik file .exe nya
Back to top Go down
http://rieqyns13.net
Crusher
Moderator
Moderator
Crusher


Jumlah posting : 1158
Join date : 2011-04-26
Age : 111
Lokasi : Di Naruto.Lagi perang

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Tue Jul 26, 2011 11:30 pm

RieqyNS13 wrote:
Kurohige wrote:
mantap gan.. affraid

kalo bisa ajarin cara bikin .exe gitu

klo bikin Exe pke Visual Basic 6.0,cuma klik File>>>Make Project exe,dan pilih folder
klo pke Visual Basic 2010,pilih Save All
[You must be registered and logged in to see this image.]

pilih folder dan ganti nama,dan Oke

saumpama km simpan di D:\Cmonhack\ dgn nama "Aplikasi1",trus km mau coba aplikasi exe yg dah km simpan di folder tadi,cara nya dgn buka D:\Cmonhack\Aplikasi1\Aplikasi1\bin\Debug\dan klik file .exe nya
thx gan,..ngomong ngomong link download VB 2010 nya mna? dan berapa MB? soalnya ane juga mau bikin program..gitu..injector PB..DLL pb gitu gan..ok ane tunggu jawaban ente sih master Programmer Cara membuat Spammer sendiri 954795
Back to top Go down
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Tue Jul 26, 2011 11:34 pm

download di situs resminya aja gan >> situs resmi

klo mau buat injector DLL PB,sebagian besar pke Visual C++,tapi ada juga yg pke Visual Basic 2010...
klo mau Visual C++ dan Visual Basic 2010,download Visual Studio 2010 Professional aja bounce
Back to top Go down
http://rieqyns13.net
Crusher
Moderator
Moderator
Crusher


Jumlah posting : 1158
Join date : 2011-04-26
Age : 111
Lokasi : Di Naruto.Lagi perang

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Tue Jul 26, 2011 11:55 pm

RieqyNS13 wrote:
download di situs resminya aja gan >> situs resmi

klo mau buat injector DLL PB,sebagian besar pke Visual C++,tapi ada juga yg pke Visual Basic 2010...
klo mau Visual C++ dan Visual Basic 2010,download Visual Studio 2010 Professional aja bounce
oh affraid thx gan..tar ane coba..tapi bingung scriptnya nyari dimana alien

Back to top Go down
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Wed Jul 27, 2011 12:07 am

Kurohige wrote:
RieqyNS13 wrote:
download di situs resminya aja gan >> situs resmi

klo mau buat injector DLL PB,sebagian besar pke Visual C++,tapi ada juga yg pke Visual Basic 2010...
klo mau Visual C++ dan Visual Basic 2010,download Visual Studio 2010 Professional aja bounce
oh affraid thx gan..tar ane coba..tapi bingung scriptnya nyari dimana alien


klo visual C++ ane kurang bisa Shocked
Back to top Go down
http://rieqyns13.net
Crusher
Moderator
Moderator
Crusher


Jumlah posting : 1158
Join date : 2011-04-26
Age : 111
Lokasi : Di Naruto.Lagi perang

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Wed Jul 27, 2011 10:04 pm

RieqyNS13 wrote:
Kurohige wrote:
oh affraid thx gan..tar ane coba..tapi bingung scriptnya nyari dimana alien


klo visual C++ ane kurang bisa Shocked
yah VB 2010 nya ga compitable ama compi ane..compi ane win XP ....pokoknya ga tau SP nya berapa Cara membuat Spammer sendiri 116129
Back to top Go down
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Wed Jul 27, 2011 10:15 pm

Kurohige wrote:
RieqyNS13 wrote:


klo visual C++ ane kurang bisa Shocked
yah VB 2010 nya ga compitable ama compi ane..compi ane win XP ....pokoknya ga tau SP nya berapa Cara membuat Spammer sendiri 116129

pke Windows XP bisa,tapi yg SP3
Back to top Go down
http://rieqyns13.net
Crusher
Moderator
Moderator
Crusher


Jumlah posting : 1158
Join date : 2011-04-26
Age : 111
Lokasi : Di Naruto.Lagi perang

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Wed Jul 27, 2011 10:27 pm

RieqyNS13 wrote:
Kurohige wrote:
yah VB 2010 nya ga compitable ama compi ane..compi ane win XP ....pokoknya ga tau SP nya berapa Cara membuat Spammer sendiri 116129

pke Windows XP bisa,tapi yg SP3
yah ane windows 95 gan Cara membuat Spammer sendiri 116129 ada VB yg compitable ama win 95? Sial nasib ku Crying or Very sad
Back to top Go down
Crusher
Moderator
Moderator
Crusher


Jumlah posting : 1158
Join date : 2011-04-26
Age : 111
Lokasi : Di Naruto.Lagi perang

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Thu Jul 28, 2011 9:22 pm

bro koq microsoft studionya pas di install 6.9 GB? jiah..kalo gini ane ga usah install.maaf lancang Cara membuat Spammer sendiri 443313
Back to top Go down
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Thu Jul 28, 2011 9:52 pm

install microsoft visual basic 2010 express edition aja klo gitu
Back to top Go down
http://rieqyns13.net
Crusher
Moderator
Moderator
Crusher


Jumlah posting : 1158
Join date : 2011-04-26
Age : 111
Lokasi : Di Naruto.Lagi perang

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Thu Jul 28, 2011 9:53 pm

RieqyNS13 wrote:
install microsoft visual basic 2010 express edition aja klo gitu
ywd ane install dulu..mau bikin simple spammer sama window media player ga sabar nich Smile

maaf ga isa ngasih cendol soalnya batanya banyak Rolling Eyes
Back to top Go down
aprianta_surbakti
Sesepuh
Sesepuh
aprianta_surbakti


Jumlah posting : 357
Join date : 2011-03-06

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Sat Jul 30, 2011 3:58 pm

RieqyNS13 wrote:
Alat2 di VB :
1) 1 ProggresBar
2) 3 TextBox
textbox1 dgn text = Spam Text
textbox2 dgn text = Interval(Masukkan Angka)
textbox3 dgn text = Masukkan Jumlah Spam Text
3) 3 Button
Button1 dgn text = Start
Button2 dgn text = Stop
Button3 dgn text = Start and Hide

4) 1 Timer

=================

1) Susunlah komponen tersebut seperti ini.........
[You must be registered and logged in to see this image.]

2) Klik 2 kali Button1,dan masukkan code berikut
Code:
Timer1.Interval = TextBox2.Text
        Timer1.Enabled = True

3) Klik 2 kali Button2,dan masukkan code berikut
Code:
Timer1.Enabled = False
        TextBox1.Text = "Spam Text"
        TextBox2.Text = "Interval"
        TextBox3.Text = "Masukkan Jumlah Spam Text"

4) Klik 2 kali Button3,dan masukkan code berikut
Code:
 Timer1.Interval = TextBox2.Text
        Timer1.Enabled = True
        Me.Hide()

5) Klik 2 kali TextBox1,dan masukkan code berikut
Code:
If TextBox1.Text = "" Then
            TextBox2.Enabled = False

        Else
            TextBox2.Enabled = True
        End If

6) Klik 2 kali TextBox2,dan masukkan code berikut
Code:
If TextBox2.Text = "" Then
            TextBox3.Enabled = False
        Else
            TextBox3.Enabled = True
        End If

7) Klik 2 kali Timer1,dan masukkan code berikut
Code:
If TextBox3.Text = "0" Then
            Timer1.Enabled = False
            TextBox1.Text = "Spam Text"
            TextBox2.Text = "Interval (Masukkan Angka)"
            TextBox3.Text = ""
        Else
            SendKeys.Send(TextBox1.Text)
            SendKeys.Send("{Enter}")
            TextBox3.Text = TextBox3.Text - 1
            ProgressBar1.Increment(5)
            If ProgressBar1.Value = ProgressBar1.Maximum Then
                ProgressBar1.Value = 0

            End If
            If TextBox3.Text = "0" Then
                ProgressBar1.Value = 0
            End If
        End If

dan the end...
Happy Coding

credit : Rieqyns13
hei gan
ada yg pnya link VB 2010 yg dri mediafire ato ziddu?
klo ada minta dong gan
soal'a aq gk bsa download langsung dari situs asli'a
Back to top Go down
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Sat Jul 30, 2011 4:10 pm

aprianta_surbakti wrote:
RieqyNS13 wrote:
Alat2 di VB :
1) 1 ProggresBar
2) 3 TextBox
textbox1 dgn text = Spam Text
textbox2 dgn text = Interval(Masukkan Angka)
textbox3 dgn text = Masukkan Jumlah Spam Text
3) 3 Button
Button1 dgn text = Start
Button2 dgn text = Stop
Button3 dgn text = Start and Hide

4) 1 Timer

=================

1) Susunlah komponen tersebut seperti ini.........
[You must be registered and logged in to see this image.]

2) Klik 2 kali Button1,dan masukkan code berikut
Code:
Timer1.Interval = TextBox2.Text
        Timer1.Enabled = True

3) Klik 2 kali Button2,dan masukkan code berikut
Code:
Timer1.Enabled = False
        TextBox1.Text = "Spam Text"
        TextBox2.Text = "Interval"
        TextBox3.Text = "Masukkan Jumlah Spam Text"

4) Klik 2 kali Button3,dan masukkan code berikut
Code:
 Timer1.Interval = TextBox2.Text
        Timer1.Enabled = True
        Me.Hide()

5) Klik 2 kali TextBox1,dan masukkan code berikut
Code:
If TextBox1.Text = "" Then
            TextBox2.Enabled = False

        Else
            TextBox2.Enabled = True
        End If

6) Klik 2 kali TextBox2,dan masukkan code berikut
Code:
If TextBox2.Text = "" Then
            TextBox3.Enabled = False
        Else
            TextBox3.Enabled = True
        End If

7) Klik 2 kali Timer1,dan masukkan code berikut
Code:
If TextBox3.Text = "0" Then
            Timer1.Enabled = False
            TextBox1.Text = "Spam Text"
            TextBox2.Text = "Interval (Masukkan Angka)"
            TextBox3.Text = ""
        Else
            SendKeys.Send(TextBox1.Text)
            SendKeys.Send("{Enter}")
            TextBox3.Text = TextBox3.Text - 1
            ProgressBar1.Increment(5)
            If ProgressBar1.Value = ProgressBar1.Maximum Then
                ProgressBar1.Value = 0

            End If
            If TextBox3.Text = "0" Then
                ProgressBar1.Value = 0
            End If
        End If

dan the end...
Happy Coding

credit : Rieqyns13
hei gan
ada yg pnya link VB 2010 yg dri mediafire ato ziddu?
klo ada minta dong gan
soal'a aq gk bsa download langsung dari situs asli'a

DOWNLOAD VB 2010

itu gan,dah ama Serial Numbernya
Back to top Go down
http://rieqyns13.net
aprianta_surbakti
Sesepuh
Sesepuh
aprianta_surbakti


Jumlah posting : 357
Join date : 2011-03-06

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Sat Jul 30, 2011 5:05 pm

Quote :
DOWNLOAD VB 2010

itu gan,dah ama Serial Numbernya
wah yg ini aq tdi dpt gan
dan hasil'a tetap gk bsa
bsa gk yg laen lgi gan?
Back to top Go down
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Sat Jul 30, 2011 5:23 pm

yg ga' bisa apanya ??
Back to top Go down
http://rieqyns13.net
aprianta_surbakti
Sesepuh
Sesepuh
aprianta_surbakti


Jumlah posting : 357
Join date : 2011-03-06

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Sat Jul 30, 2011 5:46 pm

RieqyNS13 wrote:
yg ga' bisa apanya ??
yang
Code:
Microsoft Application Error Reporting
itu doang gk mw di download
gagal mulu Cara membuat Spammer sendiri 927206
Back to top Go down
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Sat Jul 30, 2011 6:34 pm

aprianta_surbakti wrote:
RieqyNS13 wrote:
yg ga' bisa apanya ??
yang
Code:
Microsoft Application Error Reporting
itu doang gk mw di download
gagal mulu Cara membuat Spammer sendiri 927206

itu artinya komputer km ga' compatible,windows km SP brp ?
Back to top Go down
http://rieqyns13.net
aprianta_surbakti
Sesepuh
Sesepuh
aprianta_surbakti


Jumlah posting : 357
Join date : 2011-03-06

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Sat Jul 30, 2011 6:34 pm

wah udh bsa gan
tpi melalui situs resmi'a!
Back to top Go down
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Sat Jul 30, 2011 7:01 pm

aprianta_surbakti wrote:
wah udh bsa gan
tpi melalui situs resmi'a!

katanya tadi di situs resminya ga' bisa di download
Back to top Go down
http://rieqyns13.net
aprianta_surbakti
Sesepuh
Sesepuh
aprianta_surbakti


Jumlah posting : 357
Join date : 2011-03-06

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Sat Jul 30, 2011 7:05 pm

RieqyNS13 wrote:
aprianta_surbakti wrote:
wah udh bsa gan
tpi melalui situs resmi'a!

katanya tadi di situs resminya ga' bisa di download
iya emng om
tpi udh ane check IP'a dan udh bner Very Happy
maaf merepotkan yah om
maklum masih newbiew Cara membuat Spammer sendiri 443313
Back to top Go down
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Sat Jul 30, 2011 7:24 pm

aprianta_surbakti wrote:
RieqyNS13 wrote:


katanya tadi di situs resminya ga' bisa di download
iya emng om
tpi udh ane check IP'a dan udh bner Very Happy
maaf merepotkan yah om
maklum masih newbiew Cara membuat Spammer sendiri 443313

jangan panggil ane om,ane masih 14 thn
Back to top Go down
http://rieqyns13.net
Crusher
Moderator
Moderator
Crusher


Jumlah posting : 1158
Join date : 2011-04-26
Age : 111
Lokasi : Di Naruto.Lagi perang

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Sat Jul 30, 2011 7:31 pm

scriptnya error bro yg button 1 (Start) tolong perbaiki ..makasih Cara membuat Spammer sendiri 443313
Back to top Go down
agai132
Bupati
Bupati
agai132


Jumlah posting : 609
Join date : 2011-01-27
Age : 108
Lokasi : Depadn Monitor

Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1Mon Aug 01, 2011 9:51 am

gan kalo buat spammer ini dengan VB 6 yg portable bisa gk gan??? Cara membuat Spammer sendiri 911727
Back to top Go down
Sponsored content





Cara membuat Spammer sendiri Empty
PostSubject: Re: Cara membuat Spammer sendiri   Cara membuat Spammer sendiri Icon_minitime1

Back to top Go down
 
Cara membuat Spammer sendiri
Back to top 
Page 1 of 2Go to page : 1, 2  Next
 Similar topics
-
» Cara Membuat File Rahasia Sendiri Dengan Batch
» Cara Membuat Crack sendiri dengan menggunakan Software
» Cara membuat web browser sendiri dengan VB 2008/2006
» CARA MEMBUAT APLIKASI UPDATE STATUS VIA APAPUN BUATAN ANDA SENDIRI
» Membuat messagebox spammer di vb.net -_-

Permissions in this forum:You cannot reply to topics in this forum
cmonhackns.n-stars.org :: Computer Freakz :: All About Programming :: Visual Basic-
Jump to: