Jump to content
UBot Underground

How To Use Ayman's Html Parser


Recommended Posts

Hey

 

I have had this function now for a long time but still do not get how to use it

 

say I have this tag

 

<input type="hidden" name="scrambleSeed" value="359512505">

 

How do I find the Value?

 

set(#html,$plugin function("HTTP post.dll""$html parser""<input type=\"hidden\" name=\"scrambleSeed\" value=\"359512505\">""input""scrambleSeed""""value"),"Global")

 

thanks for any help

Link to post
Share on other sites

http://screencast.com/t/7Nv5YcMtc8kk

Aymen made a pdf file some time back (Http Post Plugin Docs.pdf) this is what it says about the function

 

this function is used to parse html tags from a html document to get the value you need
html document : the source html text
tag name :the tag name you want to scrape values from
attribute name : an attribute name that exists in the targeted tag name
attribute value : the attribute value of the targeted attribute name
attribute to get : the attribute value to get as a result
Basically this function will scrape an attribute value from a given tag name with the attribute
name equal to attribute value

  • Like 1
Link to post
Share on other sites
set(#html,$plugin function("HTTP post.dll", "$html parser", "<input type=\"hidden\" name=\"scrambleSeed\" value=\"359512505\">", "input", "name", "scrambleSeed", "value"),"Global")
alert(#html)

This is how its works ....  :)

  • Like 1
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...