Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 30

Thread: Peer Gurdian 1.98b

  1. #11
    Some IP's in the Database are mislabeled, I've seen that some people avatars on this site that are hosted elsewhere are listed as hostiles in PG. Keep in mind it is updated regularly. I have submitted several bad ranges which were removed in a couple of days. The PG Database is still at the moment the best we have.

  2. File Sharing   -   #12
    by the way does everyone know about new kazaalite  wich has peer guardian software built in ive just downloaded it but not installed it yet
    You can read on it at http://www.klboard.ath.cx/bb/index.php?act...t=0#entry387264.

  3. File Sharing   -   #13
    We are having some troubles with IP Ranges posted by users,
    however we are trying to clean the database very often.

    If you know of a bad range please let us know at

    PG board

    If you need help with firewalls, we have some guides that you can use for ZApro4 and Sygate

    Ripper24

    PS. and REALITY at his time we have no info about this range
    38.0.0.0 - 38.255.255.255 where did you get the info ?

  4. File Sharing   -   #14
    Ripper24,
    Where can I get the guides for ZAP 4.0?

    Also, since Peer Guardian was updated after the recent update of K-lite, does PG have to be updated outside of K-lite, or can the update for PG be done within K-lite?

    Thanks in advance!

  5. File Sharing   -   #15
    Poster
    Join Date
    Sep 2002
    Posts
    1,231
    Originally posted by Ripper24@24 July 2003 - 17:37
    PS. and REALITY at his time we have no info about this range
    38.0.0.0 - 38.255.255.255 where did you get the info ?
    I have personally seen really evil Gnutella bots working in the 38.144.65.0 - 34.144.200.255 range. They came within an ace of making the Gnutella network totally useless (not that it's very great to begin with...)

    38.0.0.0 - 38.255.255.255 is MUCH too large a range to block!

  6. File Sharing   -   #16
    You can use the MS-DOS Prompt in Start>Run>command.com...just type in "netstat" along with whatever other commands and it'll give you a list of IP connections

  7. File Sharing   -   #17
    ubstu's Avatar n00b
    Join Date
    Jul 2003
    Location
    Nowhere land
    Posts
    4
    Anyone else having trouble installing Peer Guardian or know a way to get around this. Every time I try to run the new version I get
    Run-Time '432' (or '430') Error
    File name or class name not found during Automation operation

    I don't understand why this error is coming up since the older version of PG worked just fine and when I unistalled it, and installed the newest one, this pops up.

    URGENT PLEASE RESPOND!

  8. File Sharing   -   #18
    http://www.simplyclick.org/uploadertest/pg2zap.asp

    i found that on soulseeks message board in a topic that updates on bad ip's and used it to convert the bad ip list into a blocklist for kerio. It can do the same for any firewall and involves what's in the url. A simple click.

  9. File Sharing   -   #19
    Here is a link that will convert the "Bad IP List" into a multitude of different formats for various firewalls and programs.

    Bluetack

  10. File Sharing   -   #20
    For info http://www.klboard.ath.cx/bb/index.php?showtopic=56120

    Check out the script i mentioned on page 2 of the thread I mentioned to update the IPs (stick the batch file in your startup folder)

    Edit: heres the batch file you need

    @echo off

    cd "c:\Program Files\PeerGuardian_1.96b\"

    "PG_Update.vbs"

    start PeerGuardian_1.96b.exe

    exit

    just replace paths\file names with your own.

    and the vbs to automatically update:

    ' Peer Guardian - IP Blocking List Update Script (v0.1)
    '
    ' by com
    '

    ' Peer Guardian Website: http://xs.tech.nu/pg/
    '

    ' Description: A simple script that updates Peer-Guardians IP Block list
    ' from a regularly updated online source.
    '

    ' Instructions:- Modify the configurables below as necessary.
    ' - Run this script each time before using Peer-Guardian.
    '

    ' NOTE: This script entirely replaces the original 'Guardian.P2P' file with the
    ' updated IP list. Thus any manual additions to the IP block list will be
    ' lost.
    '

    '
    '************* Configurables *************

    ' Online IP Block List in Plain Text
    Const IPListURL = "http://www.simply-click.org/uploadertest/pg2_plaintext.asp"

    ' Location of Peer Guardian 'Guarding.P2P' IP block list
    Const PGPath = "Guarding.P2P"

    ' Supress any warning messages
    Const SilentMode = FALSE

    '*****************************************


    PG_Update


    Function PG_Update

    On Error Resume Next

    '
    ' Connect to the IP List Website & Grab the page
    '

    Set o_HTTP = CreateObject("Microsoft.XMLHTTP")
    o_HTTP.Open "GET", IPListURL, false
    o_HTTP.Send

    if Err.Number = -2146697211 then
    if SilentMode = FALSE then
    msgbox "There was a problem connecting to the URL:" & VBNewLine & _
    IPListURL & VBNewLine & VBNewLine & _
    "The IP list will not be updated on this occasion", _
    vbExclamation
    end if
    exit function
    end if

    strng = o_HTTP.responsetext


    '
    ' Parse the page to get the IPs
    '

    Dim regEx
    Set regEx = New RegExp
    regEx.Global = True

    regEx.Pattern = "Plain Text Version
    \s*?
    " & _
    "([\s\S]*?)" & _
    "<font face=.*"
    Set Matches = regEx.Execute(strng)

    regEx.Pattern = "&#092;s*(.*?).*?)
    "
    Set Matches = regEx.Execute(Matches(0).SubMatches(0))

    &#39;
    &#39; Open the Peer Guardian IP List file for writing
    &#39;

    Set fso = CreateObject("Scripting.FileSystemObject")
    Set outFile = fso.CreateTextFile(PGPath, True)

    For Each Match in Matches
    OutFile.Writeline Match.SubMatches(0) & ":" & Match.SubMatches(1)
    Next

    OutFile.close
    set Http = nothing

    End Function

    or to download PG IP update

    source: Overclockers security thread page2

Page 2 of 3 FirstFirst 123 LastLast

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
  •