1
I have a list in . txt in the email|password format of my clients and want to check the integrity of some registrations. I wanted to create a variable that would take line by line from txt and change the email and password on the Curl payload. For example, it reads . txt and test the entries one by one, line by line, automatically. example:
file.txt
[email protected]|123
[email protected]|456
[email protected]|789
No payload Curl will look like this (an example):
payload = "username=variavel1&password=variavel2&clientVersion=2.4.9-undefined"
The variable1 would be the email, already the variable 2 the password of the client, in the case of the first client would be more or less like this:
payload = "[email protected]&password=123&clientVersion=2.4.9-undefined"