Jump to content

SC0U7

Members
  • Posts

    5
  • Joined

  • Last visited

SC0U7's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hello i have a text file which contain over 600KB of BASE64 strings like : TVqQAAMAAAAEAAAA//8AALgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... Now what i need is divide this long string as autoit variable each max lenght (4000characters per line) example: Local $var $var &= TVqQAAMAAAAEAAA.. $var &= VbAmejwqqqAACEE.. and then how to i add encrypt function on every line ? how to i can xor it? example final will be : $var &= XorEnc(TVqQAAMAAAAEAAA..) $var &= XorEncVbAmejwqqqAACEE..) Thanks for any help and ideas
  2. Thanks all i go try it
  3. Hello i have this code: Global $fp="bla.jpg" $sFile = $fp $sForm = _ '<form action="http://imgur.com/api/upload.xml" method="post" enctype="multipart/form-data">' & _ ' <input type="file" name="image" />' & _ ' <input name="key">' & _ '</form>' $hOpen = _WinHttpOpen() $hForm = $sForm $sRead = _WinHttpSimpleFormFill($hForm, $hOpen, Default, "name:image", $sFile, "name:key", "b3625162d3418ac51a9ee805b1840452") _WinHttpCloseHandle($hForm) _WinHttpCloseHandle($hOpen) If $sRead Then ConsoleWrite($sRead & @CRLF) But it doesnt working IMGUR reply(Image format not supported, or image is corrupt) i think it is with post but i dont know how to implement a base64 encode for it.. can someone help me ? Thanks
  4. Hello all i need help . i can t save simple text from page (sometext) with this code: Global $oHTTP = ObjCreate("winhttp.winhttprequest.5.1") $oHTTP.Open("GET", "http://xxxx/load.php?adr=127.0.0.1", False) $oHTTP.Send() $response= $oHTTP.ResponseText MsgBox(0, $response,$response) because it show me only this error on image what is wrong?
×
×
  • Create New...