Page 2 of 2 FirstFirst 12
Results 11 to 17 of 17

Thread: There's A Guy In Here...

  1. #11
    Out of The Ordinary
    Join Date
    Feb 2003
    Posts
    3,927




    Another one here

    Code:
    <?
      Header("Content-type: image/png");
      $img = ImageCreate(115,55);
      $ip = $_SERVER['REMOTE_ADDR'];
      $alt = "(c) ChromeX";
      //ImageColorTransparent($img,$bgcolor);
      $bgColor = ImageColorAllocate($img, 0x2c,0x6D,0xAF); // blue
      $shadow = ImageColorAllocate($img, 84,84,84);    // gray
      $textColor = ImageColorAllocate($img, 0,0,0);       // black
      $white = ImageColorAllocate($img, 255,255,255);     //left upper corner
      ImageRectangle($img,0,0,115-1,55-1,$shadow);  //shadow effect
      ImageRectangle($img,0,0,115,55,$white);
      ImageTTFText($img,10,0,5,20,$shadow,"times.ttf","$ip\n\r$alt"); // text shadow effect
      ImageTTFText($img,10,0,4,19,$textColor,"times.ttf","$ip\n\r$alt"); // text color
      //ImageJpeg($img);
      ImagePng($img);
      ImageDestroy($img);
    ?>
    BOT

  2. Everything Related to the Board   -   #12
    Poster
    Join Date
    Mar 2003
    Posts
    3,582
    Bot, if you compare my actual IP, which you and I can see, with what these images show, you can see that sygate is pretty effective. That proxy is way down/up stream from me.




    Oh, and the ISP is also wrong. It should be shaw.ca

  3. Everything Related to the Board   -   #13
    Yeah, the bord knows your ip. Everytime you post, it got the ip, under your avatar, (you cant see it though).



  4. Everything Related to the Board   -   #14
    Wise Kvcd Maker/PIMP
    Join Date
    May 2003
    Age
    40
    Posts
    3,412
    He was getting all scared over nothing.

  5. Everything Related to the Board   -   #15
    Barbarossa's Avatar mostly harmless
    Join Date
    Jun 2002
    Location
    Over here!
    Posts
    15,172
    Originally posted by [B][O][T]@4 September 2003 - 12:07

    Code:
    <?
     Header("Content-type: image/png");
     $img = ImageCreate(115,55);
     $ip = $_SERVER['REMOTE_ADDR'];
     $alt = "(c) ChromeX";
     //ImageColorTransparent($img,$bgcolor);
     $bgColor = ImageColorAllocate($img, 0x2c,0x6D,0xAF); // blue
     $shadow = ImageColorAllocate($img, 84,84,84);  // gray
     $textColor = ImageColorAllocate($img, 0,0,0);    // black
     $white = ImageColorAllocate($img, 255,255,255);   //left upper corner
     ImageRectangle($img,0,0,115-1,55-1,$shadow); //shadow effect
     ImageRectangle($img,0,0,115,55,$white);
     ImageTTFText($img,10,0,5,20,$shadow,"times.ttf","$ip\n\r$alt"); // text shadow effect
     ImageTTFText($img,10,0,4,19,$textColor,"times.ttf","$ip\n\r$alt"); // text color
     //ImageJpeg($img);
     ImagePng($img);
     ImageDestroy($img);
    ?>
    BOT
    Clever, I've never seen it put into an image before..

  6. Everything Related to the Board   -   #16
    Poster
    Join Date
    Jan 2003
    Location
    Here
    Posts
    491
    You need GD on your server but yeah, Ive got a version working now :-)

    I made my own functions for os browser etc etc etc


    Code:
    // Get the OS
    ACWB_SECURITY("OS", "WindowsNT1.0", "Windows 95");
    ACWB_SECURITY("OS", "Windows98", "Windows 98 / ME");
    ACWB_SECURITY("OS", "WindowsNT4.0", "Windows 98 / ME");
    ACWB_SECURITY("OS", "WindowsNT5.0", "Windows 2000");
    ACWB_SECURITY("OS", "WindowsNT5.1", "Windows XP");
    ACWB_SECURITY("OS", "WindowsNT5.2", "Windows 2003");
    ACWB_SECURITY("OS", "Linuxi686", "Linux");
    ACWB_SECURITY("OS", "Linux", "Linux");
    
    // Get the browser...
    ACWB_SECURITY("BROWSER", "MSIE2.1", "Internet Explorer 2.1");
    ACWB_SECURITY("BROWSER", "MSIE3.0", "Internet Explorer 3.0");
    ACWB_SECURITY("BROWSER", "MSIE4.0", "Internet Explorer 4.0");
    ACWB_SECURITY("BROWSER", "MSIE5.0", "Internet Explorer 5.0");
    ACWB_SECURITY("BROWSER", "MSIE5.01", "Internet Explorer 5.01");
    ACWB_SECURITY("BROWSER", "MSIE5.5", "Internet Explorer 5.5");
    ACWB_SECURITY("BROWSER", "MSIE6.0", "Internet Explorer 6.0");
    ACWB_SECURITY("BROWSER", "U", "Mozilla / Firebird");
    ACWB_SECURITY("BROWSER", "I", "Mozilla");
    ACWB_SECURITY("BROWSER", "Opera", "Opera");
    ACWB_SECURITY("BROWSER", "Konqueror3.1", "Konqueror 3.1");
    Thats the current ones, if you have any more lemme know :-)

    How do you get the little character on it though :-)

  7. Everything Related to the Board   -   #17
    BANNED
    Join Date
    May 2003
    Posts
    5,520
    lol vipersig step by step quide

Page 2 of 2 FirstFirst 12

Bookmarks

Posting Permissions

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