Jump to content
Tuts 4 You

[C#] [Help] HWID LOGIN FORM from webclient/website idk [C#]


Lexity

Recommended Posts

Lol sorry for making 3 threads about help, im a newbie.

Anyways I've searched and searched but could not find.

I'm trying to make a hwid login and how to get the hwid itself like when u click button and it puts the hwid on clipboard

then a downloadstring of the link like host ("http://pastebin/") where it has liek the hwids stored and i can remove one or remove the whole thing ok thx if u can help

Link to comment
Emper0rEyeZ

Use :

Clipboard.SetText(txtHwid.Text);

To download string from pastebin you need raw link. example:

var s = wc.DownloadString("https://pastebin.com/raw/BUads1Yv");
if (s.Contains("123"))
	Console.WriteLine("OK");
else
	Console.WriteLine("No");

And I dont understand what you mean about storing hwid and removing it. Btw, you can just remove from pastebin? right? and make some encryption.

 

Regards.

Link to comment
14 hours ago, Emper0rEyeZ said:

Use :


Clipboard.SetText(txtHwid.Text);

To download string from pastebin you need raw link. example:


var s = wc.DownloadString("https://pastebin.com/raw/BUads1Yv");
if (s.Contains("123"))
	Console.WriteLine("OK");
else
	Console.WriteLine("No");

And I dont understand what you mean about storing hwid and removing it. Btw, you can just remove from pastebin? right? and make some encryption.

 

Regards.

mate like wc doesn't exist does liek u mean are u coding in visual basics or c# lul ill just add webclient for c#

Edited by Lexity
Link to comment
Emper0rEyeZ
9 hours ago, Lexity said:

mate like wc doesn't exist does liek u mean are u coding in visual basics or c# lul ill just add webclient for c#

probably I forgot to add the line. my bad. this is c#

 

Quote

var wc = new WebClient();

 

Link to comment

the only problem is how does it work? the hwid how dus it get da code howw do i make it wurk im skid ok.

Edited by Lexity
nut
Link to comment
Emper0rEyeZ
5 hours ago, Lexity said:

the only problem is how does it work? the hwid how dus it get da code howw do i make it wurk im skid ok.

Try this one : SKGL

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...