Created
April 8, 2020 21:57
-
-
Save danechitoaie/2ff479ff59e01a9a112ef4573a78c5d2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set SID "?" | |
set SESSIONID "?" | |
set COOKIE "?" | |
while true | |
for i in (seq 4) | |
curl \ | |
--form "MAX_FILE_SIZE=1048576" \ | |
--form "type=player_avatar_image" \ | |
--form "sId=$SID" \ | |
--form "sessionid=$SESSIONID" \ | |
--form "doSub=1" \ | |
--form "json=1" \ | |
--form "avatar=@./a$i.jpg" \ | |
--cookie $COOKIE \ | |
https://steamcommunity.com/actions/FileUploader | |
sleep 60 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment