Potarski Posted February 26, 2011 Author Share Posted February 26, 2011 (edited) Can you show me how to correct?I use in my script only one $sFromID and $sFieldId1 ,$sFieldId2, $sData2, $sData2.Not more.Func _WinHttpSimpleFormFill(ByRef $hInternet, $sActionPage = Default, $sFormId = Default, $sFieldId1 = Default, $sData1 = Default, $sFieldId2 = Default, $sData2 = Default, $sFieldId3 = Default, $sData3 = Default, $sFieldId4 = Default, $sData4 = Default, $sFieldId5 = Default, $sData5 = Default, $sFieldId6 = Default, $sData6 = Default, $sFieldId7 = Default, $sData7 = Default, $sFieldId8 = Default, $sData8 = Default, $sFieldId9 = Default, $sData9 = Default, $sFieldId10 = Default, $sData10 = Default, _ $sFieldId11 = Default, $sData11 = Default, $sFieldId12 = Default, $sData12 = Default, $sFieldId13 = Default, $sData13 = Default, $sFieldId14 = Default, $sData14 = Default, $sFieldId15 = Default, $sData15 = Default, $sFieldId16 = Default, $sData16 = Default, $sFieldId17 = Default, $sData17 = Default, $sFieldId18 = Default, $sData18 = Default, $sFieldId19 = Default, $sData19 = Default, $sFieldId20 = Default, $sData20 = Default, _ $sFieldId21 = Default, $sData21 = Default, $sFieldId22 = Default, $sData22 = Default, $sFieldId23 = Default, $sData23 = Default, $sFieldId24 = Default, $sData24 = Default, $sFieldId25 = Default, $sData25 = Default, $sFieldId26 = Default, $sData26 = Default, $sFieldId27 = Default, $sData27 = Default, $sFieldId28 = Default, $sData28 = Default, $sFieldId29 = Default, $sData29 = Default, $sFieldId30 = Default, $sData30 = Default, _ $sFieldId31 = Default, $sData31 = Default, $sFieldId32 = Default, $sData32 = Default, $sFieldId33 = Default, $sData33 = Default, $sFieldId34 = Default, $sData34 = Default, $sFieldId35 = Default, $sData35 = Default, $sFieldId36 = Default, $sData36 = Default, $sFieldId37 = Default, $sData37 = Default, $sFieldId38 = Default, $sData38 = Default, $sFieldId39 = Default, $sData39 = Default, $sFieldId40 = Default, $sData40 = Default) #forceref $sFieldId1, $sData1, $sFieldId2, $sData2, $sFieldId3, $sData3, $sFieldId4, $sData4, $sFieldId5, $sData5, $sFieldId6, $sData6, $sFieldId7, $sData7, $sFieldId8, $sData8, $sFieldId9, $sData9, $sFieldId10, $sData10 #forceref $sFieldId11, $sData11, $sFieldId12, $sData12, $sFieldId13, $sData13, $sFieldId14, $sData14, $sFieldId15, $sData15, $sFieldId16, $sData16, $sFieldId17, $sData17, $sFieldId18, $sData18, $sFieldId19, $sData19, $sFieldId20, $sData20 #forceref $sFieldId21, $sData21, $sFieldId22, $sData22, $sFieldId23, $sData23, $sFieldId24, $sData24, $sFieldId25, $sData25, $sFieldId26, $sData26, $sFieldId27, $sData27, $sFieldId28, $sData28, $sFieldId29, $sData29, $sFieldId30, $sData30 #forceref $sFieldId31, $sData31, $sFieldId32, $sData32, $sFieldId33, $sData33, $sFieldId34, $sData34, $sFieldId35, $sData35, $sFieldId36, $sData36, $sFieldId37, $sData37, $sFieldId38, $sData38, $sFieldId39, $sData39, $sFieldId40, $sData40 If $sActionPage = Default Or $sActionPage = -1 Then $sActionPage = "" ; more scriptErrors:For $k = 1 To $iNumParams $sPassedData = __WinHttpURLEncode(Eval("sData" & $k)) $sPassedId = Eval("sFieldId" & $k) $aSplit = StringSplit($sPassedId, ":", 2)andFor $k = 1 To $iNumParams $sPassedData = Eval("sData" & $k) $sPassedId = Eval("sFieldId" & $k) $aSplit = StringSplit($sPassedId, ":", 2) Edited February 26, 2011 by Potarski Link to comment Share on other sites More sharing options...
ProgAndy Posted February 26, 2011 Share Posted February 26, 2011 (edited) Hey, I said it already. After adding the 4 lines, you should be able to ignore the warnings since they protect the specified variables from renaming. That means, their names will not change and the Eval will work in the obfuscated script, too.Do I really have to explain everything twice? I already wrote in the first post that the code should work although there are warnings when #Obfuscator_Ignore_Variables is added for the variables used in Eval.Edit @Bowmore: That is not really an option here since those variables are part of the parameterslist of a function. You could use Arrays here, but that would go against the principle of the function: "simple" Edited February 26, 2011 by ProgAndy *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Link to comment Share on other sites More sharing options...
Potarski Posted February 26, 2011 Author Share Posted February 26, 2011 (edited) Okay, I add 4 lines and ignore errors but it doesn't work. Edited February 26, 2011 by Potarski Link to comment Share on other sites More sharing options...
ProgAndy Posted February 26, 2011 Share Posted February 26, 2011 Just to make sure: I compiled this myself, and everything worked. Whats your error message? #AutoIt3Wrapper_Run_Obfuscator=y #Obfuscator_Ignore_Variables=$sFieldId1, $sData1, $sFieldId2, $sData2, $sFieldId3, $sData3, $sFieldId4, $sData4, $sFieldId5, $sData5, $sFieldId6, $sData6, $sFieldId7, $sData7, $sFieldId8, $sData8, $sFieldId9, $sData9, $sFieldId10, $sData10 #Obfuscator_Ignore_Variables=$sFieldId11, $sData11, $sFieldId12, $sData12, $sFieldId13, $sData13, $sFieldId14, $sData14, $sFieldId15, $sData15, $sFieldId16, $sData16, $sFieldId17, $sData17, $sFieldId18, $sData18, $sFieldId19, $sData19, $sFieldId20, $sData20 #Obfuscator_Ignore_Variables=$sFieldId21, $sData21, $sFieldId22, $sData22, $sFieldId23, $sData23, $sFieldId24, $sData24, $sFieldId25, $sData25, $sFieldId26, $sData26, $sFieldId27, $sData27, $sFieldId28, $sData28, $sFieldId29, $sData29, $sFieldId30, $sData30 #Obfuscator_Ignore_Variables=$sFieldId31, $sData31, $sFieldId32, $sData32, $sFieldId33, $sData33, $sFieldId34, $sData34, $sFieldId35, $sData35, $sFieldId36, $sData36, $sFieldId37, $sData37, $sFieldId38, $sData38, $sFieldId39, $sData39, $sFieldId40, $sData40 #include<WinHTTP.au3> $s = _WinHTTPOpen() $c = _WinHTTPConnect($s, "iraf.noao.edu") $res = _WinHTTPSimpleFormFill($c, "/ftp/web/ztest.html", Default, "name:fname", "Hello", "name:lname", "Bye") _WinHTTPCloseHandle($c) _WinHTTPCloseHandle($s) MsgBox(0, '', $res) *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Link to comment Share on other sites More sharing options...
Potarski Posted February 26, 2011 Author Share Posted February 26, 2011 (edited) Script:#Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Run_Obfuscator=y #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** #Obfuscator_Ignore_Variables=$sFieldId1, $sData1, $sFieldId2, $sData2, $sFieldId3, $sData3, $sFieldId4, $sData4, $sFieldId5, $sData5, $sFieldId6, $sData6, $sFieldId7, $sData7, $sFieldId8, $sData8, $sFieldId9, $sData9, $sFieldId10, $sData10 #Obfuscator_Ignore_Variables=$sFieldId11, $sData11, $sFieldId12, $sData12, $sFieldId13, $sData13, $sFieldId14, $sData14, $sFieldId15, $sData15, $sFieldId16, $sData16, $sFieldId17, $sData17, $sFieldId18, $sData18, $sFieldId19, $sData19, $sFieldId20, $sData20 #Obfuscator_Ignore_Variables=$sFieldId21, $sData21, $sFieldId22, $sData22, $sFieldId23, $sData23, $sFieldId24, $sData24, $sFieldId25, $sData25, $sFieldId26, $sData26, $sFieldId27, $sData27, $sFieldId28, $sData28, $sFieldId29, $sData29, $sFieldId30, $sData30 #Obfuscator_Ignore_Variables=$sFieldId31, $sData31, $sFieldId32, $sData32, $sFieldId33, $sData33, $sFieldId34, $sData34, $sFieldId35, $sData35, $sFieldId36, $sData36, $sFieldId37, $sData37, $sFieldId38, $sData38, $sFieldId39, $sData39, $sFieldId40, $sData40 #include<WinHTTP.au3> $s = _WinHTTPOpen() $c = _WinHTTPConnect($s, "localhost") $res = _WinHTTPSimpleFormFill($c, "index.php", Default, "name:login", "admin", "name:password", "adminpw") $read = StringRegExp($res, "<(?i)test>(.*?)</test(?i)>", 3, 3) _WinHTTPCloseHandle($c) _WinHTTPCloseHandle($s) MsgBox(64,"Hello",$read[0])HTML CODE:<test>100</test> <test>200</test> <test>300</test>MsgBox(64,"Hello",$read[0]) - Woriking without obfuscator.MsgBox(64,"Hello",$read[0]) - Doesn't work witch use obfuscator.Last.exe (Script after compile, why last? I gave name last becouse i give last chance for working with ober... nobody don't know how change Eval this is like mission impossible) Edited February 26, 2011 by Potarski Link to comment Share on other sites More sharing options...
ProgAndy Posted February 26, 2011 Share Posted February 26, 2011 That's really strange... Anyways, you can always make a manual POST-request without using the HTML-form: $sPost = "login=admin&password=adminpw" _WinHTTPSimpleRequest($hConnect, "POST", "/index.php", Default, $sPost) PS: I just downloaded the most recent version of WinHTTP.au3. Then added linebreaks in __WinHttpMIMEAssocString() Func __WinHttpMIMEAssocString() Return ";ai|application/postscript;aif|audio/x-aiff;aifc|audio/x-aiff;aiff|audio/x-aiff;asc|text/plain;atom|application/atom+xml;au|audio/basic;avi|video/x-msvideo;bcpio|application/x-bcpio;bin|application/octet-stream;bmp|image/bmp;cdf|application/x-netcdf;cgm|image/cgm;class|application/octet-stream;cpio|application/x-cpio;cpt|application/mac-compactpro;csh|application/x-csh;css|text/css;dcr|application/x-director;dif|video/x-dv;dir|application/x-director;djv|image/vnd.djvu;djvu|image/vnd.djvu;dll|application/octet-stream;dmg|application/octet-stream;dms|application/octet-stream;" & _ "doc|application/msword;dtd|application/xml-dtd;dv|video/x-dv;dvi|application/x-dvi;dxr|application/x-director;eps|application/postscript;etx|text/x-setext;exe|application/octet-stream;ez|application/andrew-inset;gif|image/gif;gram|application/srgs;grxml|application/srgs+xml;gtar|application/x-gtar;hdf|application/x-hdf;hqx|application/mac-binhex40;htm|text/html;html|text/html;ice|x-conference/x-cooltalk;ico|image/x-icon;ics|text/calendar;ief|image/ief;ifb|text/calendar;iges|model/iges;igs|model/iges;jnlp|application/x-java-jnlp-file;jp2|image/jp2;jpe|image/jpeg;jpeg|image/jpeg;jpg|image/jpeg;" & _ "js|application/x-javascript;kar|audio/midi;latex|application/x-latex;lha|application/octet-stream;lzh|application/octet-stream;m3u|audio/x-mpegurl;m4a|audio/mp4a-latm;m4b|audio/mp4a-latm;m4p|audio/mp4a-latm;m4u|video/vnd.mpegurl;m4v|video/x-m4v;mac|image/x-macpaint;man|application/x-troff-man;mathml|application/mathml+xml;me|application/x-troff-me;mesh|model/mesh;mid|audio/midi;midi|audio/midi;mif|application/vnd.mif;mov|video/quicktime;movie|video/x-sgi-movie;mp2|audio/mpeg;mp3|audio/mpeg;mp4|video/mp4;mpe|video/mpeg;mpeg|video/mpeg;mpg|video/mpeg;mpga|audio/mpeg;ms|application/x-troff-ms;" & _ "msh|model/mesh;mxu|video/vnd.mpegurl;nc|application/x-netcdf;oda|application/oda;ogg|application/ogg;pbm|image/x-portable-bitmap;pct|image/pict;pdb|chemical/x-pdb;pdf|application/pdf;pgm|image/x-portable-graymap;pgn|application/x-chess-pgn;pic|image/pict;pict|image/pict;png|image/png;pnm|image/x-portable-anymap;pnt|image/x-macpaint;pntg|image/x-macpaint;ppm|image/x-portable-pixmap;ppt|application/vnd.ms-powerpoint;ps|application/postscript;qt|video/quicktime;qti|image/x-quicktime;qtif|image/x-quicktime;ra|audio/x-pn-realaudio;ram|audio/x-pn-realaudio;ras|image/x-cmu-raster;rdf|application/rdf+xml;" & _ "rgb|image/x-rgb;rm|application/vnd.rn-realmedia;roff|application/x-troff;rtf|text/rtf;rtx|text/richtext;sgm|text/sgml;sgml|text/sgml;sh|application/x-sh;shar|application/x-shar;silo|model/mesh;sit|application/x-stuffit;skd|application/x-koan;skm|application/x-koan;skp|application/x-koan;skt|application/x-koan;smi|application/smil;smil|application/smil;snd|audio/basic;so|application/octet-stream;spl|application/x-futuresplash;src|application/x-wais-source;sv4cpio|application/x-sv4cpio;sv4crc|application/x-sv4crc;svg|image/svg+xml;swf|application/x-shockwave-flash;t|application/x-troff;" & _ "tar|application/x-tar;tcl|application/x-tcl;tex|application/x-tex;texi|application/x-texinfo;texinfo|application/x-texinfo;tif|image/tiff;tiff|image/tiff;tr|application/x-troff;tsv|text/tab-separated-values;txt|text/plain;ustar|application/x-ustar;vcd|application/x-cdlink;vrml|model/vrml;vxml|application/voicexml+xml;wav|audio/x-wav;wbmp|image/vnd.wap.wbmp;wbmxl|application/vnd.wap.wbxml;wml|text/vnd.wap.wml;wmlc|application/vnd.wap.wmlc;wmls|text/vnd.wap.wmlscript;wmlsc|application/vnd.wap.wmlscriptc;wrl|model/vrml;xbm|image/x-xbitmap;xht|application/xhtml+xml;xhtml|application/xhtml+xml;" & _ "xls|application/vnd.ms-excel;xml|application/xml;xpm|image/x-xpixmap;xsl|application/xml;xslt|application/xslt+xml;xul|application/vnd.mozilla.xul+xml;xwd|image/x-xwindowdump;xyz|chemical/x-xyz;zip|application/zip;" EndFunc ;==>__WinHttpMIMEAssocString And then compiled the script: #AutoIt3Wrapper_Run_Obfuscator=y #Obfuscator_Ignore_Variables=$sFieldId1, $sData1, $sFieldId2, $sData2, $sFieldId3, $sData3, $sFieldId4, $sData4, $sFieldId5, $sData5, $sFieldId6, $sData6, $sFieldId7, $sData7, $sFieldId8, $sData8, $sFieldId9, $sData9, $sFieldId10, $sData10 #Obfuscator_Ignore_Variables=$sFieldId11, $sData11, $sFieldId12, $sData12, $sFieldId13, $sData13, $sFieldId14, $sData14, $sFieldId15, $sData15, $sFieldId16, $sData16, $sFieldId17, $sData17, $sFieldId18, $sData18, $sFieldId19, $sData19, $sFieldId20, $sData20 #Obfuscator_Ignore_Variables=$sFieldId21, $sData21, $sFieldId22, $sData22, $sFieldId23, $sData23, $sFieldId24, $sData24, $sFieldId25, $sData25, $sFieldId26, $sData26, $sFieldId27, $sData27, $sFieldId28, $sData28, $sFieldId29, $sData29, $sFieldId30, $sData30 #Obfuscator_Ignore_Variables=$sFieldId31, $sData31, $sFieldId32, $sData32, $sFieldId33, $sData33, $sFieldId34, $sData34, $sFieldId35, $sData35, $sFieldId36, $sData36, $sFieldId37, $sData37, $sFieldId38, $sData38, $sFieldId39, $sData39, $sFieldId40, $sData40 #include<WinHTTP.au3> $s = _WinHTTPOpen() $c = _WinHTTPConnect($s, "iraf.noao.edu") $res = _WinHTTPSimpleFormFill($c, "/ftp/web/ztest.html", Default, "name:fname", "Hello", "name:lname", "Bye") _WinHTTPCloseHandle($c) _WinHTTPCloseHandle($s) MsgBox(0, '', $res) Everything works perfect. (Obfuscator v.1.0.28.7) *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Link to comment Share on other sites More sharing options...
Potarski Posted February 26, 2011 Author Share Posted February 26, 2011 (edited) $sPost = "login=admin&password=adminpw" _WinHTTPSimpleRequest($hConnect, "POST", "/index.php", Default, $sPost) Working very well, your script after ober... too, but my script doesn;t work, only _WinHTTPSimpleRequest. Can you show me how to use that funcion for a lot of some form's and small value? Like a index:0 Value you have in topic, it's possimble which use that funcion? Edited February 26, 2011 by Potarski Link to comment Share on other sites More sharing options...
ProgAndy Posted February 26, 2011 Share Posted February 26, 2011 Og course its possible, for example: $sAction = "/newspanel/" $sPost = "useMake=true" $sResult = _WinHTTPSimpleRequest($hConnect, "POST", $sAction, Default, $sPost) *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Link to comment Share on other sites More sharing options...
Potarski Posted February 26, 2011 Author Share Posted February 26, 2011 (edited) But i need then after log_in Example: $s = _WinHTTPOpen() $c = _WinHTTPConnect($s, "localhost") $sPost = "login=admin&password=adminpw&log_in=1" $res = _WinHTTPSimpleRequest($c, "POST", "", Default, $sPost) ;Working well :) and after POST folow me for "panel.localhost" $sAction = "/newspanel/" $sPost2 = "useMake=true" $sResult = _WinHTTPSimpleRequest($c, "POST", $sAction, Default, $sPost2) ; console write nothing.... _WinHTTPCloseHandle($res) _WinHTTPCloseHandle($c) _WinHTTPCloseHandle($s) ConsoleWrite($sResult) Edited February 26, 2011 by Potarski Link to comment Share on other sites More sharing options...
Potarski Posted February 27, 2011 Author Share Posted February 27, 2011 Reffresh )) Link to comment Share on other sites More sharing options...
Moderators SmOke_N Posted February 28, 2011 Moderators Share Posted February 28, 2011 Do not bump your threads within 24 hours of your last post! Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Link to comment Share on other sites More sharing options...
Potarski Posted February 28, 2011 Author Share Posted February 28, 2011 (edited) Posted 26 February 2011 - 06:29 PMPosted Yesterday (27 February 2011) , 11:48 PMAre you creazy? Its more than 24h Edited February 28, 2011 by Potarski Link to comment Share on other sites More sharing options...
Moderators SmOke_N Posted February 28, 2011 Moderators Share Posted February 28, 2011 I'm sorry, you're right, I thought you were bumping just to bump. I just kept seeing this topic over and over, and realized you were not implementing anything anyone said correctly I guess it was sticking to the roof of my mouth like peanut butter. Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Link to comment Share on other sites More sharing options...
Potarski Posted February 28, 2011 Author Share Posted February 28, 2011 (edited) Please close topic i don't need nothing Edited February 28, 2011 by Potarski Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now