Skip to content

Instantly share code, notes, and snippets.

@danechitoaie
Created April 8, 2020 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danechitoaie/2ff479ff59e01a9a112ef4573a78c5d2 to your computer and use it in GitHub Desktop.
Save danechitoaie/2ff479ff59e01a9a112ef4573a78c5d2 to your computer and use it in GitHub Desktop.
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