Jump to content

Web-based AutoIt! - New with AuCGI!


theguy0000
 Share

Recommended Posts

Display my current IP adress on your webpage with auto :whistle:

Awesome that this is working !!!

found out how to get IP address.

Func _GetClientIP ( )
Return EnvGet ('REMOTE_ADDR')
EndFunc

edit: added example to the test page. see above post.

Edited by theguy0000

The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN

Link to comment
Share on other sites

i made an autoit based web counter

_WebCounter()


Func _WebCounter($sCounterMsg='You are Visitor Number',$sCounter='visits.txt')
    Dim $i = 1, $line = FileRead($sCounter)
    $i = $line + $i

    echo ($sCounterMsg &' '& $i &'<br />')

    FileDelete($sCounter)
    FileWriteLine($sCounter,$i)
EndFunc
Edited by WTS
Link to comment
Share on other sites

i made an autoit based web counter

_WebCounter()
Func _WebCounter($sCounterMsg='You are Visitor Number',$sCounter='visits.txt')
    Dim $i = 1, $line = FileRead($sCounter)
    $i = $line + $i

    echo ($sCounterMsg &' '& $i &'<br />')

    FileDelete($sCounter)
    FileWriteLine($sCounter,$i)
EndFunc
awsome. *edits a little bit*

Func _WebCounter($sCounterMsg='You are Visitor Number %',$sCounter='visits.txt')
    Dim $i = 1, $line = FileRead($sCounter)
    $i = $line + $i

    echo (StringReplace ($sCounterMsg, "%", $i))

    FileDelete($sCounter)
    FileWriteLine($sCounter,$i)
EndFunc

there. put % inside the string and thats where the number will go. allows for text before AND after the number now.

The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN

Link to comment
Share on other sites

is somebody tryin to DoS me???

within ten minutes i got hundreds of views in that counter. The site even went down for a few seconds, i think cause it was too busy.

who the heck is doing that?

either that or my website is alot more popular than i thought with so many views in TEN MINUTES

Edited by theguy0000

The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN

Link to comment
Share on other sites

OMG this is ridiculous. I had to disable my server! that was coming in WAY too fast for it to be normal visitors. Who the heck was trying to DoS me? it didnt work idiot. ive got far too much recources to go down that easy.

The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN

Link to comment
Share on other sites

OMG this is ridiculous. I had to disable my server! that was coming in WAY too fast for it to be normal visitors. Who the heck was trying to DoS me? it didnt work idiot. ive got far too much recources to go down that easy.

No Dos attack ... just good ol finger attack ....

Edited by Fossil Rock

Agreement is not necessary - thinking for one's self is!

My-Colors.jpg

cuniform2.gif

Link to comment
Share on other sites

darn, i was gonna say something funny if no one spoke up

i'll say it anyway:

I hacked 127.0.0.1 once and found all my stuff there ... I was really pissed.... how did they get my stuff???

Agreement is not necessary - thinking for one's self is!

My-Colors.jpg

cuniform2.gif

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...