Post: (Csharp/C#) How To Grab String's ( Line's ) From Pastebin
01-10-2017, 09:34 PM #1
HMXOnDex
Do a barrel roll!
(adsbygoogle = window.adsbygoogle || []).push({});
Hi NGU Niggaz!!

Today I'm Gonna Show You Guy's How To Grab String's (Line's) From Pastebin

Current Target Is Account's ( Displayed As UserName : Password )

It Will Grab The String's And Split Them Into 2 Text Box's

Split Into : UserName And Password And Get's Putted Into The TextBox's



1.)
Add In An Button And 2 Textbox's

You must login or register to view this content.

2.)
Add In Using System.Net

You must login or register to view this content.

3.)
Add
    private List<string> a = new List<string>();
private List<string> user = new List<string>();
private List<string> pass = new List<string>();
private string NGUTest = webclient.DownloadString("https://pastebin.com/raw.php?i=Tav7yMVC");
public static WebClient webclient = new WebClient();

Under Form1 Like This
You must login or register to view this content.

4.)
Add
                 this.a.Add(this.NGUTest);
string str1 = this.NGUTest;
string[] separator = new string[1]
{
Environment.NewLine
};
int num = 1;
foreach (string str2 in str1.Split(separator, (StringSplitOptions)num))
{
this.a.Clear();
this.a.Add(str2);
Random random = new Random();
string str3 = this.a[random.Next(this.a.Count)];
string str4 = str3.Split(':'Winky Winky[1];
string str5 = str3.Split(':'Winky Winky[0];
this.pass.Add(str4);
this.user.Add(str5);
int index = random.Next(this.pass.Count);
this.textBox2.Text = this.pass[index];
this.textBox1.Text = this.user[index];
}

In The Button Like This

You must login or register to view this content.

5.)
ReName The Textbox1 And TextBox2 In The Button To What Ever Ur TextBox's Are Called

6.)
Remember To Change The Code After raw.phpi= To Ur Pastebin Link Code

This Code

You must login or register to view this content.

7.)
If U Still Dident Understand This Simple Tutorial , Then Download The Project Source And Look For Your Self Winky Winky


You must login or register to view this content.

Project Source :
You must login or register to view this content.

Virustotal Of Exe : (1/55)
You must login or register to view this content.

Qihoo-360 HEUR/QVM03.0.0000.Malware.Gen 20161129

Qihoo Pick's Up All Type's Of Shit Soo I Dont Know Why

I Have This Feeling That This Post Is Gonna Get A Lot Of Hate For Some Reason :troll: , Like All My Other Post's Sal

The following 2 users say thank you to HMXOnDex for this useful post:

Algebra, Dro
01-11-2017, 04:37 AM #2
Default Avatar
Oneup
Guest
Originally posted by HMXOnDex View Post
Hi NGU Niggaz!!

Today I'm Gonna Show You Guy's How To Grab String's (Line's) From Pastebin

Current Target Is Account's ( Displayed As UserName : Password )

It Will Grab The String's And Split Them Into 2 Text Box's

Split Into : UserName And Password And Get's Putted Into The TextBox's



1.)
Add In An Button And 2 Textbox's

You must login or register to view this content.

2.)
Add In Using System.Net

You must login or register to view this content.

3.)
Add
    private List<string> a = new List<string>();
private List<string> user = new List<string>();
private List<string> pass = new List<string>();
private string NGUTest = webclient.DownloadString("https://pastebin.com/raw.php?i=Tav7yMVC");
public static WebClient webclient = new WebClient();

Under Form1 Like This
You must login or register to view this content.

4.)
Add
                 this.a.Add(this.NGUTest);
string str1 = this.NGUTest;
string[] separator = new string[1]
{
Environment.NewLine
};
int num = 1;
foreach (string str2 in str1.Split(separator, (StringSplitOptions)num))
{
this.a.Clear();
this.a.Add(str2);
Random random = new Random();
string str3 = this.a[random.Next(this.a.Count)];
string str4 = str3.Split(':'Winky Winky[1];
string str5 = str3.Split(':'Winky Winky[0];
this.pass.Add(str4);
this.user.Add(str5);
int index = random.Next(this.pass.Count);
this.textBox2.Text = this.pass[index];
this.textBox1.Text = this.user[index];
}

In The Button Like This

You must login or register to view this content.

5.)
ReName The Textbox1 And TextBox2 In The Button To What Ever Ur TextBox's Are Called

6.)
Remember To Change The Code After raw.phpi= To Ur Pastebin Link Code

This Code

You must login or register to view this content.

7.)
If U Still Dident Understand This Simple Tutorial , Then Download The Project Source And Look For Your Self Winky Winky


You must login or register to view this content.

Project Source :
You must login or register to view this content.

Virustotal Of Exe : (1/55)
You must login or register to view this content.

Qihoo-360 HEUR/QVM03.0.0000.Malware.Gen 20161129

Qihoo Pick's Up All Type's Of Shit Soo I Dont Know Why

I Have This Feeling That This Post Is Gonna Get A Lot Of Hate For Some Reason :troll: , Like All My Other Post's Sal


So I just noticed you are declaring a variable after it is being used:

    
private string NGUTest = webclient.DownloadString("https://pastebin.com/raw.php?i=Tav7yMVC");
public static WebClient webclient = new WebClient();


I don't know how that even compiled let alone the fact that it didn't even tell you that it wasn't right.

If you are posting the source, why are you obfuscating the Binary? It makes no sense to do that knowing it's going to get detected as a virus when the code is provided.

You should also get into the habit of naming your controls.

The following user thanked Oneup for this useful post:

Sloth
01-11-2017, 06:19 AM #3
Sloth
Banned
Originally posted by HMXOnDex View Post
Hi NGU Niggaz!!

Today I'm Gonna Show You Guy's How To Grab String's (Line's) From Pastebin

Current Target Is Account's ( Displayed As UserName : Password )

It Will Grab The String's And Split Them Into 2 Text Box's

Split Into : UserName And Password And Get's Putted Into The TextBox's



1.)
Add In An Button And 2 Textbox's

You must login or register to view this content.

2.)
Add In Using System.Net

You must login or register to view this content.

3.)
Add
    private List<string> a = new List<string>();
private List<string> user = new List<string>();
private List<string> pass = new List<string>();
private string NGUTest = webclient.DownloadString("https://pastebin.com/raw.php?i=Tav7yMVC");
public static WebClient webclient = new WebClient();

Under Form1 Like This
You must login or register to view this content.

4.)
Add
                 this.a.Add(this.NGUTest);
string str1 = this.NGUTest;
string[] separator = new string[1]
{
Environment.NewLine
};
int num = 1;
foreach (string str2 in str1.Split(separator, (StringSplitOptions)num))
{
this.a.Clear();
this.a.Add(str2);
Random random = new Random();
string str3 = this.a[random.Next(this.a.Count)];
string str4 = str3.Split(':'Winky Winky[1];
string str5 = str3.Split(':'Winky Winky[0];
this.pass.Add(str4);
this.user.Add(str5);
int index = random.Next(this.pass.Count);
this.textBox2.Text = this.pass[index];
this.textBox1.Text = this.user[index];
}

In The Button Like This

You must login or register to view this content.

5.)
ReName The Textbox1 And TextBox2 In The Button To What Ever Ur TextBox's Are Called

6.)
Remember To Change The Code After raw.phpi= To Ur Pastebin Link Code

This Code

You must login or register to view this content.

7.)
If U Still Dident Understand This Simple Tutorial , Then Download The Project Source And Look For Your Self Winky Winky


You must login or register to view this content.

Project Source :
You must login or register to view this content.

Virustotal Of Exe : (1/55)
You must login or register to view this content.

Qihoo-360 HEUR/QVM03.0.0000.Malware.Gen 20161129

Qihoo Pick's Up All Type's Of Shit Soo I Dont Know Why

I Have This Feeling That This Post Is Gonna Get A Lot Of Hate For Some Reason :troll: , Like All My Other Post's Sal



How on earth did you compile this where you are able to call the web client before instantiating the actual web client?
01-11-2017, 07:16 AM #4
HMXOnDex
Do a barrel roll!
Originally posted by Sloth View Post
How on earth did you compile this where you are able to call the web client before instantiating the actual web client?


Magic LMAO :troll:
01-11-2017, 07:21 AM #5
HMXOnDex
Do a barrel roll!
Originally posted by Oneup View Post
So I just noticed you are declaring a variable after it is being used:

    
private string NGUTest = webclient.DownloadString("https://pastebin.com/raw.php?i=Tav7yMVC");
public static WebClient webclient = new WebClient();


I don't know how that even compiled let alone the fact that it didn't even tell you that it wasn't right.

If you are posting the source, why are you obfuscating the Binary? It makes no sense to do that knowing it's going to get detected as a virus when the code is provided.

You should also get into the habit of naming your controls.


I dident ob it and it call's the the web client before instantiating the actual web client cuse u know , If You Know Magic , U Can Do Stupid And Great Thing's LMAO
01-11-2017, 07:45 AM #6
Default Avatar
Oneup
Guest
Originally posted by HMXOnDex View Post
I dident ob it and it call's the the web client before instantiating the actual web client cuse u know , If You Know Magic , U Can Do Stupid And Great Thing's LMAO


So you are saying you took someone else's code and posted it as your own?
01-11-2017, 07:47 AM #7
HMXOnDex
Do a barrel roll!
Originally posted by Oneup View Post
So you are saying you took someone else's code and posted it as your own?


oh I thought u ment ob the source executable ._. , well the binary is ob yea , kinda dumb but shit lol
Last edited by HMXOnDex ; 01-11-2017 at 08:10 AM.
01-11-2017, 09:48 PM #8
Algebra
[move]mov eax, 69[/move]

Originally posted by HMXOnDex View Post
Hi NGU Niggaz!!

Today I'm Gonna Show You Guy's How To Grab String's (Line's) From Pastebin

Current Target Is Account's ( Displayed As UserName : Password )

It Will Grab The String's And Split Them Into 2 Text Box's

Split Into : UserName And Password And Get's Putted Into The TextBox's



1.)
Add In An Button And 2 Textbox's

You must login or register to view this content.

2.)
Add In Using System.Net

You must login or register to view this content.

3.)
Add
    private List<string> a = new List<string>();
private List<string> user = new List<string>();
private List<string> pass = new List<string>();
private string NGUTest = webclient.DownloadString("https://pastebin.com/raw.php?i=Tav7yMVC");
public static WebClient webclient = new WebClient();

Under Form1 Like This
You must login or register to view this content.

4.)
Add
                 this.a.Add(this.NGUTest);
string str1 = this.NGUTest;
string[] separator = new string[1]
{
Environment.NewLine
};
int num = 1;
foreach (string str2 in str1.Split(separator, (StringSplitOptions)num))
{
this.a.Clear();
this.a.Add(str2);
Random random = new Random();
string str3 = this.a[random.Next(this.a.Count)];
string str4 = str3.Split(':'Winky Winky[1];
string str5 = str3.Split(':'Winky Winky[0];
this.pass.Add(str4);
this.user.Add(str5);
int index = random.Next(this.pass.Count);
this.textBox2.Text = this.pass[index];
this.textBox1.Text = this.user[index];
}

In The Button Like This

You must login or register to view this content.

5.)
ReName The Textbox1 And TextBox2 In The Button To What Ever Ur TextBox's Are Called

6.)
Remember To Change The Code After raw.phpi= To Ur Pastebin Link Code

This Code

You must login or register to view this content.

7.)
If U Still Dident Understand This Simple Tutorial , Then Download The Project Source And Look For Your Self Winky Winky


You must login or register to view this content.

Project Source :
You must login or register to view this content.

Virustotal Of Exe : (1/55)
You must login or register to view this content.

Qihoo-360 HEUR/QVM03.0.0000.Malware.Gen 20161129

Qihoo Pick's Up All Type's Of Shit Soo I Dont Know Why

I Have This Feeling That This Post Is Gonna Get A Lot Of Hate For Some Reason :troll: , Like All My Other Post's Sal




I was a wee bit perplexed. But what does this actually do ? Like you have a txtBox for Username &amp: Password but I have no idea what you're trying to do here sorry ?
01-12-2017, 08:54 AM #9
HMXOnDex
Do a barrel roll!
Originally posted by Algebra View Post




I was a wee bit perplexed. But what does this actually do ? Like you have a txtBox for Username &: Password but I have no idea what you're trying to do here sorry ?


it grab's the string's at pastebin and split's then into 2 textbox's soo lets say u have UserName:Password , It Will Split The First One As {UserName} And The 2nd As {Password} . Soo It Realize's There Is An : Splitting Them Soo As The {UserName} Will Go To The First Textbox And {Password} Will Go To The 2nd Textbox , I'm shit at explaining lmao well let's hope u understood it xD , BTW Sorry For My Shit Grammar xD

The following user thanked HMXOnDex for this useful post:

Algebra
01-12-2017, 10:03 AM #10
Algebra
[move]mov eax, 69[/move]
Originally posted by HMXOnDex View Post
it grab's the string's at pastebin and split's then into 2 textbox's soo lets say u have UserName:Password , It Will Split The First One As {UserName} And The 2nd As {Password} . Soo It Realize's There Is An : Splitting Them Soo As The {UserName} Will Go To The First Textbox And {Password} Will Go To The 2nd Textbox , I'm shit at explaining lmao well let's hope u understood it xD , BTW Sorry For My Shit Grammar xD


Yeah I get you man great work Smile

The following user thanked Algebra for this useful post:

HMXOnDex

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo