Seite 1 von 2 12 LetzteLetzte
Ergebnis 1 bis 10 von 16
  1. #1
    Kevin Mitnick Avatar von Mirr0w
    Registriert seit
    30.06.2009
    Beiträge
    1.096

    Standard mocks Problem/Config

    wenn ich meinen mocks starte und per proxifier drauf zugreifen will kommt folgender error :

    [26:15] Testing Started.
    Proxy Server
    Address: ***********
    Protocol: SOCKS 5
    Authentication: YES
    Username: test

    [26:15] Starting: Test 1: Connection to the Proxy Server
    [26:15] IP Address: ***********
    [26:15] Connection established
    [26:15] Test passed.
    [26:15] Starting: Test 2: Connection through the Proxy Server
    [26:15] Error : the proxy server uses unsupported methods.
    [26:15] Tes ...


    kann mir jmd von euch helfen ?
    ich denke es liegt an der mocks.conf ;D

    Mit freundlichen Grueßen,
    Mirr0w
    Geändert von Mirr0w (04.10.2010 um 17:16 Uhr)
    Was hast du damals an den Worten "hau ab" nicht verstanden? │P0nny
    <3

  2. #2
    Tron Avatar von poddels
    Registriert seit
    18.07.2008
    Beiträge
    891

    Standard

    Zitat Zitat von Mirr0w Beitrag anzeigen
    ich denke es liegt an der mocks.conf ;D
    Mirr0w
    Dann stell diese doch bitte mit rein...
    Kontakt: PM
    Blackmarket-Profil: [34|81|0]

  3. #3
    Kevin Mitnick Avatar von Mirr0w
    Registriert seit
    30.06.2009
    Beiträge
    1.096

    Standard

    ja ich versuch es ja ... klappt aber nunmal nicht
    Was hast du damals an den Worten "hau ab" nicht verstanden? │P0nny
    <3

  4. #4
    Tron Avatar von poddels
    Registriert seit
    18.07.2008
    Beiträge
    891

    Standard

    Was klappt daran nicht?
    mocks.conf öffnen, Inhalt kopieren und hier posten =/
    Kontakt: PM
    Blackmarket-Profil: [34|81|0]

  5. #5
    Kevin Mitnick Avatar von Mirr0w
    Registriert seit
    30.06.2009
    Beiträge
    1.096

    Standard

    #################################################
    # #
    # Sample configuration file for MOCKS 0.0.2 #
    # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
    # #
    # I recommend reading the examples in this file #
    # and then extending it to suite your needs. #
    # #
    #################################################



    #########################
    #
    # General daemon config
    # ~~~~~~~~~~~~~~~~~~~~~
    #
    #########################

    PORT = 1337 # Port MOCKS is to listen to
    MOCKS_ADDR = ********** # IP adress MOCKS is to bind to
    LOG_FILE = mocks.log # MOCKS log file
    PID_FILE = mocks.pid # File holding MOCKS's process ID
    BUFFER_SIZE = 65536 # Traffic buffer size in bytes
    BACKLOG = 5 # Backlog for listen()
    NEGOTIATION_TIMEOUT = 5
    CONNECTION_IDLE_TIMEOUT = 300
    BIND_TIMEOUT = 30
    SHUTDOWN_TIMEOUT = 3
    MAX_CONNECTIONS = 5



    ################################################## ########################
    #
    # Client filter config
    # ~~~~~~~~~~~~~~~~~~~~
    #
    # Client filtering means sorting out which clients are allowed
    # connection and which are not. This is basically done like this:
    # MOCKS has a default behaviour regarding filtering client
    # connections. This behaviour is called the 'policy' and can either
    # be to ALLOW or to DENY the connection. After setting the policy
    # you can specify a list of exceptions. The action MOCKS takes
    # for a client matching any of these exceptions is the opposite
    # of the policy (that is, if the policy is set to ALLOW the exceptions
    # are denied and if the policy is set to DENY the exceptions are allowed).
    # An exception is specified in the form ip_address/mask, where mask
    # is optional and is an integer ranging from 0 to 32 identifying the
    # number of common heading bits that ip_address and the client's IP
    # address must have in order to yield a match. If mask is missing,
    # 32 will be assumed. For instance, 192.168.1.0/24 will match any IP
    # ranging from 192.168.1.1 to 192.168.1.255.
    #
    # Let's take two examples, one for each type of policy. Let's say we
    # only want to allow IPs 10.12.0.0 through 10.12.255.255, 172.23.2.5 and
    # 192.168.52.26 to use MOCKS. What we have to to is this:
    #
    # FILTER_POLICY = DENY
    # FILTER_EXCEPTION = 10.12.0.0/16
    # FILTER_EXCEPTION = 172.23.2.5 # implied /32
    # FILTER_EXCEPTION = 192.168.52.26 # implied /32
    #
    # Now, let's say this is a public proxy server, but for some reason
    # you don't want to let any IP ranging from 192.168.1.1 to 192.168.1.255
    # and neither 10.2.5.13 to connect to it:
    #
    # FILTER_POLICY = ALLOW
    # FILTER_EXCEPTION = 192.168.1.0/24
    # FILTER_EXCEPTION = 10.2.5.13
    #
    ################################################## #########################

    FILTER_POLICY = DENY
    FILTER_EXCEPTION = 10.12.0.0/16
    FILTER_EXCEPTION = 172.23.2.5
    FILTER_EXCEPTION = 192.168.52.26



    ################################################## ###########################
    #
    # Upstream proxy config
    # ~~~~~~~~~~~~~~~~~~~~~
    #
    # You can choose to further relay traffic through another proxy server.
    # MOCKS supports upstream HTTP CONNECT, SOCKS4 and SOCKS5 proxies. You
    # must specify the proxy type (one of HTTPCONNECT, SOCKS4 or SOCKS5), the
    # proxy address and the proxy port. Optionally you can specify an user
    # name and a password used to authenicate to the upstream proxy. This is
    # pretty straight forward, so let's just take an example. Let's say you
    # want to use the HTTP CONNECT server at httpconnectproxy.com, on port 3128,
    # using the username 'foo' and the password 'bar'. You do it like this:
    #
    # UP_PROXY_TYPE = SOCKS5
    # UP_PROXY_ADDR = ***********
    # UP_PROXY_PORT = 1337
    # UP_PROXY_USER = test # These two can be missing if you
    # UP_PROXY_PASSWD = test # are not required to authenticate
    #
    ################################################## ###########################

    UP_PROXY_TYPE = SOCKS5
    UP_PROXY_ADDR = ************
    UP_PROXY_PORT = 1337
    UP_PROXY_USER = test
    UP_PROXY_PASSWD = test


    das "***********" steht für die ip.
    Geändert von Mirr0w (02.10.2010 um 20:24 Uhr)
    Was hast du damals an den Worten "hau ab" nicht verstanden? │P0nny
    <3

  6. #6
    Trojaner
    Registriert seit
    17.06.2005
    Beiträge
    70

    Standard

    mach mal aus
    FILTER_POLICY = DENY
    FILTER_EXCEPTION = 10.12.0.0/16
    FILTER_EXCEPTION = 172.23.2.5
    FILTER_EXCEPTION = 192.168.52.26

    ein

    FILTER_POLICY = ALLOW
    Geändert von klaxxxor (03.10.2010 um 02:02 Uhr)

  7. #7
    DateMake Dialer
    Registriert seit
    24.05.2010
    Beiträge
    102

    Standard

    Wieso wird 2x der Port angegeben? Erst oben "PORT = 1337" und dann unten nochmal..? Darüber hinaus, würd ich die LogFile auf "dev0" stellen, falls der Server nicht loggen sollte ;-)

    Dachte erst das vlt Port 1337 in Doppelter Benutzung ist, aber dein Server hat aktuell Port 1337 garnicht offen.. Maybe liegts echt nur daran, dass Du 2x PORT angegeben hast und beides ja der gleiche ist.
    Böse Diebe klauten Waren.
    Böse, die Beklauten waren!

    882-884 [ nur mit OTR ]

    [S] Perl-Mentor [ der mir hilft Perl-Scripte zu schreiben ]

  8. #8
    Kevin Mitnick Avatar von Mirr0w
    Registriert seit
    30.06.2009
    Beiträge
    1.096

    Standard

    wie genau würde der code dann aussehen um ihn nonlogging zu machen ?
    lg
    Was hast du damals an den Worten "hau ab" nicht verstanden? │P0nny
    <3

  9. #9
    Anfänger Avatar von 0x1cedd1ce
    Registriert seit
    31.01.2010
    Beiträge
    17

    Standard

    UP_PROXY_* darfst nicht auf sich selbst verweisen, da das ja ein zusätzlicher proxy ist durch den die anfrage geleitet wird, wenn es funktionieren würde, dann hättest du eine unendliche proxykette.

  10. #10
    Kevin Mitnick Avatar von Mirr0w
    Registriert seit
    30.06.2009
    Beiträge
    1.096

    Standard

    hast du mal ne bsp config für mich ?
    Was hast du damals an den Worten "hau ab" nicht verstanden? │P0nny
    <3

Seite 1 von 2 12 LetzteLetzte

Ähnliche Themen

  1. [S] gepachtes mocks
    Von Ezi0 im Forum Linux und UNIX-Systeme
    Antworten: 2
    Letzter Beitrag: 12.08.2010, 17:23
  2. Mocks 0.0.2 Configfile Problem
    Von G.U.N im Forum Linux und UNIX-Systeme
    Antworten: 6
    Letzter Beitrag: 14.07.2010, 22:38
  3. Hilfe bei Mocks [Socks5]
    Von Shadowgamer im Forum Anonymität & Proxies
    Antworten: 3
    Letzter Beitrag: 17.03.2010, 20:56
  4. Counter Strike Source : Grafik config Problem
    Von Solaro im Forum Anwendungssoftware
    Antworten: 4
    Letzter Beitrag: 05.02.2010, 08:16
  5. mocks
    Von Helix im Forum Linux und UNIX-Systeme
    Antworten: 1
    Letzter Beitrag: 03.01.2009, 12:13

Stichworte

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •