Forum

> > Unreal Software > USGN Login via HTTP
Forums overviewUnreal Software overviewLog in to reply

English USGN Login via HTTP

5 replies
To the start Previous 1 Next To the start

old USGN Login via HTTP

3RROR
User Off Offline

Quote
I need help with this next problem: I'm attempting to make an external US login but when I send the HTTP
headers, it doesn't bring me to the main page with a text that tells you if your login was right or wrong.
I'm using the next header

1
2
3
4
5
POST /login.php?fwd= HTTP/1.1
Host: www.unrealsoftware.de
User-Agent: USGN-External

form_user=MYUSERNAME&form_pw=MYPASSWORD&form_save=0&form_login_sent=1

But when I execute the code in a script, it brings me again to the login form page.
Any help?

old Re: USGN Login via HTTP

Apache uwu
User Off Offline

Quote
You need to use multipart form data.

Here is an example of a login request.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
POST /login.php?fwd= HTTP/1.1
Host: unrealsoftware.de
User-Agent: USGN-External
Accept-Encoding: gzip, deflate
Connection: keep-alive
Content-Type: multipart/form-data; boundary=---------------------------265001916915724
Content-Length: CONTENT_LENGTH

-----------------------------265001916915724
Content-Disposition: form-data; name="form_user"

USERNAME_HERE
-----------------------------265001916915724
Content-Disposition: form-data; name="form_pw"

PASSWORD_HERE
-----------------------------265001916915724
Content-Disposition: form-data; name="form_save"

1
-----------------------------265001916915724
Content-Disposition: form-data; name="form_bsend"

Please wait...
-----------------------------265001916915724
Content-Disposition: form-data; name="form_login_sent"

1
-----------------------------265001916915724--

Replace "USERNAME_HERE" with your username, "PASSWORD_HERE" with your password, and "CONTENT_LENGTH" with the number of characters below.

Here is the stripped form html.

1
2
3
4
5
6
7
<form enctype="multipart/form-data" method="post" action="http://unrealsoftware.de/login.php" name="login">
	<input type="text" name="form_user">
	<input type="password" name="form_pw">
	<input type="submit" value="Log in">
	<input type="hidden" value="1" name="form_login_sent">
	<input type="hidden" value="1" name="form_save">
</form>

old Re: USGN Login via HTTP

Lys
User Off Offline

Quote
?!
Sounds like someone is trying to create a phishing website to me... But fails at it and creates a topic about it on the forums of the to-be-phished site...

old Re: USGN Login via HTTP

3RROR
User Off Offline

Quote
Test purposes for newest scripts.
Also I love how you guys think I want to hack US by asking help in the same site.

And thanks @user Apache uwu: for the help.
To the start Previous 1 Next To the start
Log in to replyUnreal Software overviewForums overview