Jump to content

Get sourcecode, read, write


Humper
 Share

Recommended Posts

Hello this is what I want to do:

#1, Read sourcecode from a site (www.*.com/ulid_k.php)

#2, Seach for specified term (in my case ulid=)

#3, Get the numbers that after the ulid=

#4, Seach for all thats the same and don't record the once with no numbers after.

#5, Get (if possible minimized) firefox and write www.*.com/view.php?ulid= and get one of the numbercodes and set them after the =.

#6, Do the same with all found numbercodes.

#7, write message how many clicked (get script somewhere)

I wonder how to do this IF its possible.

Thanks in advance!

Regards Humper

[center][/center]

Link to comment
Share on other sites

#1, Read sourcecode from a site (www.*.com/ulid_k.php)

If this was possible then the use of the system itself has failed. If you want to read the source from a server you would need a backdoor, and this is not the place to take that discussion.

EDIT: Are you sure you mean the php source code, or the html output ?

Edited by jokke
UDF:Crypter a file encrypt / decrypt tool with no need to remember a password again. Based on Caesar cipher using entire ASCII Table.Script's: PixelSearch Helper, quick and simple way to create a PixelSeach.Chatserver - simplified, not so complicated multi-socket server.AutoIT - Firewall, simple example on howto create a firewall with AutoIt.
Link to comment
Share on other sites

#1, Read sourcecode from a site (www.*.com/ulid_k.php)

If this was possible then the use of the system itself has failed. If you want to read the source from a server you would need a backdoor, and this is not the place to take that discussion.

EDIT: Are you sure you mean the php source code, or the html output ?

By the looks of the post, it seems to be HTML output?
Link to comment
Share on other sites

By the looks of the post, it seems to be HTML output?

Yeah, after i thought for a while i thought so aswell.

Well then what he requested should be possible.

UDF:Crypter a file encrypt / decrypt tool with no need to remember a password again. Based on Caesar cipher using entire ASCII Table.Script's: PixelSearch Helper, quick and simple way to create a PixelSeach.Chatserver - simplified, not so complicated multi-socket server.AutoIT - Firewall, simple example on howto create a firewall with AutoIt.
Link to comment
Share on other sites

Look at IE UDF in AutoIt's helpfile.

There are functions for that: _IECreate(), _IEBodyReadHTML(), _IEBodyReadText(), ... 

Great, exactly what I ment, I will reply here later when I read a bit.

Thanks!

Ok I start slow:

#include <IE.au3>
$oIE = _IEcreate ("http://slopsbox.com/")
$sText = _IEBodyReadText ($oIE)
MsgBox(0, "Body Text", $sText)

But how I get the links?

Now I got little ow I read the body, but I want to read body and seach for a frase?

#include <IE.au3>
$oIE = _IEcreate ("http://slopsbox.com/")
$sText = _IEBodyReadText ($oIE)
$oMarquee = _IEGetObjByName ($oIE, "the")
MsgBox(0, "the", $oMarquee.innerText)

Thats what I got from help file tho I get error at innertext.

Edited by Humper

[center][/center]

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...