Results 1 to 25 of 25

Thread: Making a php script

  1. #1
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default Making a php script

    I want to make a script that 'hacks' a php site, but i dont know how to. The site is found here: http://www.ruff-rose.com/login.php I want the script to try to login with a password and a username I tell it to login with.

    Can I do something like http://www.ruff-rose.com/login.php?u...word=something ?

  2. #2
    Join Date
    Jun 2006
    Location
    United Kingdom
    Posts
    116
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    From the site source code:

    PHP Code:
            <tr>
                <
    td><div align="right">Username:</div></td>
                <
    td width="5"></td>
                <
    td><input type="text" name="username" id="username" /></td>
            </
    tr>
            <
    tr>
                <
    td><div align="right">Password: </div></td>

                <
    td width="5"></td>
                <
    td><input type="password" name="password" id="password" /></td>
            </
    tr
    Then use:

    PHP Code:
    function InitializeHTTPClient(HandleCookiesHandleRedirectsBoolean): Integer;
    Creates a new HTTP client in memory and returns handle of the client.

    procedure AddPostVariable(ClientIntegerVarNameVarValuestring);
    Adds new POST variable (for PostHTTPPageEx).

    function 
    PostHTTPPageEx(ClientIntegerUrlstring): string;
    Do 
    POST request of page specified by Urlwhere POST variables are added prior using ClearPostData and AddPostVariable.

    procedure ClearPostData(ClientInteger);
    Clears POST variables list (for PostHTTPPageEx). 
    Think thats all you need

  3. #3
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Hmm...
    I tryed this:
    SCAR Code:
    var
      HTTPClient : Integer;
    begin
      ClearDeBug;
      HTTPClient := InitializeHTTPClient(True, True);
      AddPostVariable(HTTPClient, 'username', 'Zytex');
      AddPostVariable(HTTPClient, 'password', 'something');
      WriteLn(PostHTTPPageEx(HTTPClient, 'http://www.ruffrose.com/login.php'));
      ClearPostData(HTTPClient);
    end.

    I can't say that it worked very well...
    Socket Error # 10054
    Connection reset by peer.
    Successfully executed

  4. #4
    Join Date
    Jun 2006
    Location
    United Kingdom
    Posts
    116
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, running the same script i get:

    PHP Code:
    Connection Closed Gracefully.

    Successfully executed 
    Check firewalls and SCAR permissions etc.

  5. #5
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmm interesting ^^
    ~Hermen

  6. #6
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by Hermpie View Post
    Hmm interesting ^^
    Lol, spam much?

    Back to topic: I got them on 'Allow All'.

  7. #7
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    M2 not working for me either got the same debug.

    Edit:
    even turned firewall off.
    ~Hermen

  8. #8
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Hmm...

    If anyone gets this to work, test this and tell me what it says in the debug.
    SCAR Code:
    var
      HTTPClient : Integer;
    begin
      ClearDeBug;
      HTTPClient := InitializeHTTPClient(True, True);
      AddPostVariable(HTTPClient, 'username', 'SRLZytex');
      AddPostVariable(HTTPClient, 'password', 'something');
      WriteLn(PostHTTPPageEx(HTTPClient, 'http://www.ruffrose.com/login.php'));
      ClearPostData(HTTPClient);
    end.

  9. #9
    Join Date
    Nov 2006
    Location
    'Pergamino, BA, Argentina';
    Posts
    473
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    I don't know if this has something to do, but maybe add this variable too?

    dologin = 'Login !'

    I've worked with post variables before, on my Fotolog Gold Maker script, i'll read it again and see if i can help you, but the script posted by Daniel should work.

  10. #10
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by Shady? View Post
    I don't know if this has something to do, but maybe add this variable too?

    dologin = 'Login !'

    I've worked with post variables before, on my Fotolog Gold Maker script, i'll read it again and see if i can help you, but the script posted by Daniel should work.
    If you go to the page www.ruff-rose.com/login.php you will notice that the button says 'Login !', so i think it would be something like

    submit = 'dologin' or dologin = '1'.. idk

  11. #11
    Join Date
    Dec 2006
    Location
    .̿̂̔͋͗̎̆ͥ̍̒ͤ͂̾̌̀̅
    Posts
    3,012
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Seen alot of stuff like this made in Perl before. Well gl, can't help you much. I thought of posting because I'd test that thing but I decided not to after all.

  12. #12
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Why not?

    Just tell me what it says in the debug box.

  13. #13
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmm...

    HTML Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Log-in</title>
    <link href="ministyle.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <table width="640" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td colspan="3"><img src="images/miniwnd_header_login.jpg" alt="" width="640" height="44" /></td>
      </tr>
      <tr>
    
        <td colspan="3"><img src="images/miniwnd_header2.jpg" width="640" height="35" /></td>
      </tr>
      <tr>
        <td width="25"><img src="images/miniwnd_leftbar.jpg" width="25" height="373" /></td>
        <td width="590" valign="top">
    	<table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td><table width="100%" border="0" align="center" cellpadding="3" cellspacing="0" class="linkbar">
              <tr>
    
                <!--<td background="images/storage_topbarslice.gif">--><td>
    			You are not logged in!			</td>
              </tr>
            </table>
    		</td>
          </tr>
    	  <tr><td class="normalcontent"><br />
    	  
    	 
    <br />
    
    <form id="login" name="login" method="post" action="">
    	<table border="0" align="center" cellpadding="0" cellspacing="0">
    		<tr>
    			<td><div align="right">Username:</div></td>
    			<td width="5"></td>
    			<td><input type="text" name="username" id="username" /></td>
    		</tr>
    		<tr>
    			<td><div align="right">Password: </div></td>
    
    			<td width="5"></td>
    			<td><input type="password" name="password" id="password" /></td>
    		</tr>
    		<tr>
    			<td colspan="3">
    				<div align="center">
    					<input type="submit" name="dologin" value="Login !" /><br /><br />
    					<a href="register.php">Register</a> ::	<a href="forgotpassword.php">Change Password</a><br /><br />
    
    					<a href="forgotmother.php">Resend Mother's Name</a><br /><br />
    					<a href="reactivate.php?change=genpassword">Generate New Password</a> :: <a href="reactivate.php?change=reqemail">Request E-Mail change</a><br />
    				</div>
    			</td>
    		</tr>
    	</table>
    
    </form>
    
    </td></tr>
        </table>
    	</td>
        <td width="25"><img src="images/miniwnd_rightbar.jpg" width="25" height="373" /></td>
      </tr>
      <tr>
        <td colspan="3"><img src="images/miniwnd_bottombar.jpg" width="640" height="28" /></td>
      </tr>
    
    </table>
    </body>
    </html>

  14. #14
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Yes Timer, we know how the html code looks like..

  15. #15
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Im thinking!

  16. #16
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Oh, Thank you

  17. #17
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    SCAR Code:
    var
      HTTPClient : Integer;
    begin
      ClearDeBug;
      HTTPClient := InitializeHTTPClient(True, True);
      AddPostVariable(HTTPClient, 'username', 'SRLZytex');
      AddPostVariable(HTTPClient, 'password', 'something');
      AddPostVariable(HTTPClient, 'dologin', 'Login !')
      WriteLn(PostHTTPPageEx(HTTPClient, 'http://www.ruffrose.com/login.php'));
      ClearPostData(HTTPClient);
    end.

  18. #18
    Join Date
    Nov 2006
    Location
    'Pergamino, BA, Argentina';
    Posts
    473
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    I edited an old script and this is what i got:

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>
    	ruff rose zulie buy achat at ruffrose.com
    </title>
    <meta name="keywords" content="ruff,rose,zulie,buy,achat,online,cheap,zuly,maple,story" />
    <meta name="description" content="maplestory accounts rose online zulie hack download game road silk" />
    <SCRIPT LANGUAGE='Javascript' SRC='/ruffrose.com.js'></SCRIPT>
    <link href='/css/w01/t101.css?def=Akamai%3aHostingURL%3dhttp%3a%2f%2fi.nuseek.com%7cBdyStyl%3aPageBackgroundColor%3d%23fff%7cBdyStyl%3aFont%3darial%7cBdyStyl%3aFontSize%3d12%7cBdyStyl%3aFontColor%3d%230e5fd8%7cBdyStyl%3aPrimaryColor%3d%231b5709%7cBdyStyl%3aPrimaryColorComplement%3d%23fff%7cBdyStyl%3aSecondaryColor%3d%23c44242%7cBdyStyl%3aSecondaryColorComplement%3d%23edc6c6%7cBdyStyl%3aTertiaryColor%3d%23f3f3f3%7cBdyStyl%3aTertiaryColorComplement%3d%23476ec7%7cPgHdr%3aFontSize%3d18%7cPgHdr%3aFont%3dVerdana%7cRelLink%3aFont%3darial%7cRelLink%3aFontSize%3d14%7cRelLink%3aFontColor%3d%23476ec7%7cRelLink%3aHoverFontColor%3d%23c03625%7cRelLink%3aBackgroundColor%3d%23fafad9%7cRelLink%3aDividerColor%3d%23e2dfb8%7cRelLink%3aHoverBackgroundColor%3d%23fbfbf5%7cRelLink%3aImagePath%3d%2fimages%2fThemes%2fT101%2fbullets%2f0006.gif%7cRelLink%3aImageWidth%3d10%7cRelLink%3aImageHeight%3d10%7cBottomNav%3aImagePath%3d%2fimages%2fThemes%2fT101%2fbullets_9x9%2f0006.gif%7cResult%3aImagePath%3d%2fimages%2fThemes%2fT101%2fbullets%2f0006.gif%7cResult%3aHeaderFont%3darial%7cResult%3aHeaderFontSize%3d12%7cResult%3aHeaderFontColor%3d%23000%7cResult%3aTitleFont%3darial%7cResult%3aTitleFontSize%3d16%7cResult%3aTitleFontColor%3d%2300c%7cResult%3aAbstractFont%3darial%7cResult%3aAbstractFontSize%3d12%7cResult%3aAbstractFontColor%3d%23000%7cResult%3aURLFont%3darial%7cResult%3aURLFontSize%3d12%7cResult%3aURLFontColor%3d%23008000%7cResult%3aSidebarBorderColor%3d%23ccc%7cSrchBox%3aImagePath%3d%2fimages%2fThemes%2fT101%2fbuttons%2f0006.gif%7cSrchBox%3aImageWidth%3d60%7cSrchBox%3aImageHeight%3d22%7cSrchBox%3aAlign%3dright%7cSearchLinkGroup%3aHoverLinkColor%3d%23ff9%7cUsrCust%3aFontType%3dverdana%7cUsrCust%3aFontSize%3d11%7cUsrCust%3aFontColor%3d%23666%7cUsrCust%3aLinkColor%3d%230e5fd8%7cSrchBox%3aTextboxWidth%3d0' rel='stylesheet' title='default' type='text/css' />
    
    <script language="javascript" type="Text/Javascript">
    <!--
    -->
    </script>
    
    
    <style type="text/css">
    <!--
    -->
    </style>
    
    </head>
    
    <body id="wf01" class="pg1">
    <form name="parking_form" method="get" action="/default.pk" id="parking_form">
    <div>
    
    </div>
    <!--
    ====================================
                 Version: 3.5.82.10
               Client_IP: i edited this out
    ====================================
    -->
    
    
    <table cellspacing="0">
    	<tr>
    		
    		
    		
    			
    		<td>&nbsp;</td>
    	</tr>
    </table>
    
    
    <table border="0" cellspacing="0" cellpadding="0" id="container">
      <tr>
    	
        <td class="col1">
    	
    	
    	</td>
    	
    
    
    	
    	<td class="col2">
    	
    		
    		<table cellspacing="0">
    			<tr>
    				<td>
    					<table cellspacing="0">
    						<tr>
    							
    							
    							<td><div><strong>&nbsp;</strong></div></td>
    										
    							<td>&nbsp;&nbsp;</td>
    						</tr>
    					</table>
    				</td>
    				<td>
    					<table cellspacing="0">
    						<tr>
    							
    							
    							
    							
    							<td>&nbsp;</td>
    						</tr>
    					</table>
    				</td>
    			</tr>
    		</table>
    		
    	
    	
    	<div class="userCustom2"></div>
    
    	
    	<table border="0" cellspacing="0" cellpadding="0" class="hdr">
      		<tr>
       			<td class="hdrL">
    			
    			<div class="header"><h1>Welcome to <b>ruffrose.com</b></h1></div>
    			
    			</td>
       			<td class="hdrR">
    			
    			
    						
    			</td>
     		</tr>
    	</table>
    	
    	
    	<div class="leftNavHdrOn"><span>Related Searches</span></div>
    	
    
    	
    	
    	<table width="100%" border="0" cellspacing="0" cellpadding="0" id="oneColLayout">
    		<tr>
    			<td class="oneCol">
    			
    			
    			
    			
    			
    			</td>
    		</tr>
    	</table>
    	
    	
    		
    	<table border="0" cellspacing="0" cellpadding="0" id="twoColLayout">
    		<tr>
        		<td class="twoColL">
    			<div class="ldrRelLinks clearfix"><div class="ldrRelLinks_Col1"><ul><li class="first"><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/ruff_rose_zulie.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=7&slr=0&lpt=1');"><span class="inner">Ruff Rose Zulie</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/buy_zulie.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=7&slr=0&lpt=1');"><span class="inner">Buy Zulie</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/achat_rose_online.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=7&slr=0&lpt=1');"><span class="inner">Achat Rose Online</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/cheap_zulie.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=7&slr=0&lpt=1');"><span class="inner">Cheap Zulie</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/achat_zuly.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=7&slr=0&lpt=1');"><span class="inner">Achat Zuly</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/maple_story_the_game.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=7&slr=0&lpt=1');"><span class="inner">Maple Story The Game</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/maple_story_private_server.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=7&slr=0&lpt=1');"><span class="inner">Maple Story Private Server</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/rose_zuly.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=7&slr=0&lpt=1');"><span class="inner">Rose Zuly</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/cheats_for_maple_story.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=7&slr=0&lpt=1');"><span class="inner">Cheats For Maple Story</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/maplestory_online.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=7&slr=0&lpt=1');"><span class="inner">Maplestory Online</span></span></li><li class="last"><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/maplestory_accounts.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=7&slr=0&lpt=1');"><span class="inner">Maplestory Accounts</span></span></li></ul></div></div>
    							
    			
    			
    			
    			</td>
        		<td class="twoColR">
    			<div class="mainImg"><img src="http://i.nuseek.com/images/template/360x318/ist2_746781_female_student.jpg" border="0" /></div>
    						
    			
    			
    			
    			</td>
      		</tr>
    	</table>
    	
    	
    	
    	<table border="0" cellspacing="0" cellpadding="0" id="threeColLayout">
      		<tr>
        		<td class="threeColL">
    			
    			
    			
    			
    			
    			</td>
        		<td class="threeColM">
    			
    			
    			
    			
    			
    			</td>
        		<td class="threeColR">
    			
    			
    			
    			
    			
    			</td>
    		  </tr>
    	</table>
    	
    	
    	
    	<div class="searchBox"><table><tr><td><input type="text" name="tsearch" id="tsearch" class="SearchBoxText" tabindex="1" /></td><td><input type="image" src="http://i.nuseek.com/images/misc/blank.gif" id="search_button" name="search_button" class="sb_btn" tabindex="2" /></td></tr></table></div><div class="clear"></div>
    	<div class="searchLinkGroup clearfix"><div class="searchLinkGroup_Hdr"><span>Related Searches: </span></div><div class="searchLinkGroup_Col1"><ul><li class="first"><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/insurance.htm?gdt=Uo5LRDAAVUgKEwjyvPKcyLeVAhUHUWoKHet3zH4YAiAAMKrXggI4DVCq14ICUKit0A8&slt=16&slr=0&lpt=1');"><span class="inner">Insurance</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/credit_cards.htm?gdt=Uo5LRDAAVUgKEwjyvPKcyLeVAhUHUWoKHet3zH4YAiAAMKrXggI4DVCq14ICUKit0A8&slt=16&slr=0&lpt=1');"><span class="inner">Credit Cards</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/education_online.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=16&slr=0&lpt=1');"><span class="inner">Education Online</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/hotel_reservation.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=16&slr=0&lpt=1');"><span class="inner">Hotel Reservation</span></span></li><li><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/dating_online.htm?gdt=iULAh32URUIKEwjyvPKcyLeVAhUHUWoKHet3zH4YACAAMKrXggI4DVCq14ICUKit0A8&slt=16&slr=0&lpt=1');"><span class="inner">Dating Online</span></span></li><li class="last"><span class="outer" onclick="javascript:slNav('/location/rose/online/zulie/debt_consolidation.htm?gdt=Uo5LRDAAVUgKEwjyvPKcyLeVAhUHUWoKHet3zH4YAiAAMKrXggI4DVCq14ICUKit0A8&slt=16&slr=0&lpt=1');"><span class="inner">Debt Consolidation</span></span></li></ul></div></div>
    
    	
    	
    		
    	
    	<div class="ftr">
    		<div class="userCustom"><span style="color: blue; font-size: 16px; font-weight: 800;">This domain may be for sale. <a target="_blank" href="http://www.acquirethisname.com/Default.aspx?domain=ruffrose.com">Buy this Domain</a></span><br /><!-- START REVENUE SCIENCE PIXELLING CODE --><script src="http://js.revsci.net/gateway/gw.js?csid=F08747"></script><script>DM_tag();</script><!-- END REVENUE SCIENCE PIXELLING CODE --><br /><span><a style="color: red; font-size: 14px; font-weight: 600;" title="Travel Deals" href="http://wwwonlinetravel.com/" target="_onlinetravel">Vacation Deals – Great vacation deals online</a></span><br/>  <span><a style="color: purple; font-size: 14px; font-weight: 600;" title="Top Schools" href="http://findaschool.com/" target="findaschool">Online Schools – The top online schools</a></span><br/>  <span><a style="color: black; font-size: 14px; font-weight: 600;" title="Credit Card Deals" href="http://getcreditcards.net/" target="creditcard">Credit Card Deals – Top Card Offers</a></span><br/>  <span><a style="color: green; font-size: 14px; font-weight: 600;" title="Fast Cash" href="http://onlinecash.com/" target="getcash">Need Cash? Click Here for Fast Cash</a></span></div>
    		
    		
    	</div>
    	
    	
    		
    		<table cellspacing="0">
    			<tr>				
    				
    				
    				
    				
    				<td>&nbsp;&nbsp;</td>
    			</tr>
    		</table>
    		
    	
    	</td>
    
    
    	
        <td class="col3">
    	
    	
    	</td>
    	
    
      </tr>
    </table>
    
    	
    	<table cellspacing="0">
    		<tr>
    			
    			
    			
    			
    			<td>&nbsp;&nbsp;</td>
    		</tr>
    	</table>
    	
    	
    	
    	
    	
    	
    <script language="JavaScript">   var zflag_nid="820"; var zflag_cid="21"; var zflag_sid="5"; var zflag_width="1024"; var zflag_height="768"; var zflag_sz="17";    </script>   <SCRIPT LANGUAGE="JavaScript" src="http://simg.zedo.com/Exitpop/ep.js"></SCRIPT></form>
    
    
    
    <script language='javascript' type='Text/Javascript'>
    function GetIPPI(g) {
        var xmlHttp = createXMLHttpRequest();
        if (xmlHttp != null) {
            xmlHttp.open('GET', '/'+g+'.ippi?g='+g, true);
            xmlHttp.send(null);
        }
    }
    
    function createXMLHttpRequest() {
      try { return new ActiveXObject('Msxml2.XMLHTTP'); } catch(e) {}
      try { return new ActiveXObject('Microsoft.XMLHTTP'); } catch(e) {}
      try { return new XMLHttpRequest(); } catch(e) {}
      return null;
    }
    
    GetIPPI('90b218df-078b-4547-9fdc-9ec568c118af');
    </script>
    
    
    
    
    <img src='http://i.nuseek.com/images/misc/trk.gif?category=&keywords=ruffrose.com' />
    
    
    </body>
    </html>

  19. #19
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Shady? @ What are you talking about? Thats a website for buying zulies?

  20. #20
    Join Date
    Nov 2006
    Location
    'Pergamino, BA, Argentina';
    Posts
    473
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Idk what is that, i just got it :/ i'll send you the script if you want, but its a mess.

  21. #21
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Get The FF addon Tamper Data it can tell you which post paramater variables it has ^^
    ~Hermen

  22. #22
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Can you do it for me? On this computer I am not allowed to download anything. (SCAR is the only thing my dad accepted, because hes also a programmer )

  23. #23
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    What do i have to do? Msn?
    ~Hermen

  24. #24
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Heh, have fun with an IP Ban from that website


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  25. #25
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If i am going to use it will build in a proxy thingy^^ and hope to convert it to C#
    ~Hermen

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. im new and need help making my 1st script
    By KEVINF342 in forum OSR Help
    Replies: 4
    Last Post: 01-24-2009, 06:15 PM
  2. Making first script need some help
    By AC Lova123 in forum OSR Help
    Replies: 4
    Last Post: 05-10-2008, 12:33 PM
  3. Script is making the rs lag
    By fudgepack a in forum OSR Help
    Replies: 6
    Last Post: 03-13-2008, 11:25 PM
  4. Help making script!
    By King of the Nites in forum OSR Help
    Replies: 2
    Last Post: 09-18-2007, 01:25 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •