Helpme please ................ brother

Results 1 to 14 of 14
  1. #1
    Account Upgraded | Title Enabled! markmark is offline
    MemberRank
    Aug 2006 Join Date
    217Posts

    sad Helpme please ................ brother

    ๊๊Urgent:

    How to protection player add item in game

    mysql

    Thank:(


  2. #2
    Valued Member Daraia is offline
    MemberRank
    Nov 2013 Join Date
    Cookie JarLocation
    103Posts

    Re: Helpme please ................ brother

    Were you looking for that? [Release] Debug Console Access Denied

  3. #3
    Account Upgraded | Title Enabled! markmark is offline
    MemberRank
    Aug 2006 Join Date
    217Posts

    Re: Helpme please ................ brother

    Quote Originally Posted by Daraia View Post
    Were you looking for that? [Release] Debug Console Access Denied
    Thank for share but can't work

  4. #4
    Valued Member extazy20 is offline
    MemberRank
    Feb 2012 Join Date
    101Posts

    Re: Helpme please ................ brother

    You need to close some ingame ports like 29400, 29100, 3306 via iptables. So try close all ports and leave open only 80, 29000, 22.
    Google to the rescue

  5. #5
    Account Upgraded | Title Enabled! markmark is offline
    MemberRank
    Aug 2006 Join Date
    217Posts

    Re: Helpme please ................ brother

    Quote Originally Posted by extazy20 View Post
    You need to close some ingame ports like 29400, 29100, 3306 via iptables. So try close all ports and leave open only 80, 29000, 22.
    Google to the rescue
    Where how to close some ingame ports like 29400, 29100, 3306

    Thank

  6. #6
    Valued Member extazy20 is offline
    MemberRank
    Feb 2012 Join Date
    101Posts

    Re: Helpme please ................ brother

    Quote Originally Posted by markmark View Post
    Where how to close some ingame ports like 29400, 29100, 3306

    Thank
    1) Create file /root/rules
    2) Put this text in current file:
    -A INPUT -p tcp --dport 22 -j ACCEPT
    -A INPUT -p tcp --dport 80 -j ACCEPT
    -A INPUT -p tcp --dport 29000 -j ACCEPT
    -P INPUT REJECT
    COMMIT

    2) Write in terminal:
    iptables-restore < /root/rules
    3) Test your jd mailer. It should not work.

  7. #7
    Account Upgraded | Title Enabled! markmark is offline
    MemberRank
    Aug 2006 Join Date
    217Posts

    Re: Helpme please ................ brother

    Quote Originally Posted by markmark View Post
    Where how to close some ingame ports like 29400, 29100, 3306

    Thank
    Thank you am try again

    - - - Updated - - -

    Quote Originally Posted by extazy20 View Post
    1) Create file /root/rules
    2) Put this text in current file:
    -A INPUT -p tcp --dport 22 -j ACCEPT
    -A INPUT -p tcp --dport 80 -j ACCEPT
    -A INPUT -p tcp --dport 29000 -j ACCEPT
    -P INPUT REJECT
    COMMIT

    2) Write in terminal:
    iptables-restore < /root/rules
    3) Test your jd mailer. It should not work.
    THANK you am try again

    - - - Updated - - -

    Quote Originally Posted by markmark View Post
    Where how to close some ingame ports like 29400, 29100, 3306

    Thank

    How to use please

    - - - Updated - - -


    [root@localhost ~]# /root/rules
    /root/rules: line 1: -A: command not found
    /root/rules: line 2: -A: command not found
    /root/rules: line 3: -A: command not found
    /root/rules: line 4: -P: command not found
    /root/rules: line 5: COMMIT: command not found
    [root@localhost ~]#
    [root@localhost ~]#
    Last edited by markmark; 22-01-17 at 03:35 PM. Reason: https://www.sendspace.com/file/d245cx

  8. #8
    Valued Member extazy20 is offline
    MemberRank
    Feb 2012 Join Date
    101Posts

    Re: Helpme please ................ brother

    No. That thing you are writing is wrong.
    [root@localhost ~]# /root/rules
    It should be:
    [root@localhost ~]# iptables-restore < /root/rules

  9. #9
    Proficient Member Farrawh is offline
    MemberRank
    Jul 2011 Join Date
    EnglandLocation
    180Posts

    Re: Helpme please ................ brother

    iptables -A INPUT -p tcp -s localhost --dport 29400 -j ACCEPT
    iptables -A INPUT -p tcp --dport 29400 -j DROP
    service apache2 restart


    Do that.

  10. #10
    JD | Web Developer mrosenov is offline
    MemberRank
    Jun 2012 Join Date
    BulgariaLocation
    555Posts

    Re: Helpme please ................ brother

    Quote Originally Posted by Farrawh View Post
    iptables -A INPUT -p tcp -s localhost --dport 29400 -j ACCEPT
    iptables -A INPUT -p tcp --dport 29400 -j DROP
    service apache2 restart


    Do that.
    Yea, close gamedbd port and leave the other important ports open too...
    Do you even know what will happen if your uniquenamed or gdeliveryd ports are not filtered and somebody send a DDoS to them?
    uniquenamed database will be completely destroyed and it will cause a wipe unless you know how to fix the shit.
    gdeliveryd is the main thing that connects players to the server now imagine somebody to strike your server right in the heart your players will never be able to log in unless the attacker stop ddosing.
    So I suggest you to read this carefully and close the rest of the ports of your server, cause yea I know they're open.

    I guess I should write a full guide on how to secure JD server >___<

  11. #11
    Account Upgraded | Title Enabled! markmark is offline
    MemberRank
    Aug 2006 Join Date
    217Posts

    Re: Helpme please ................ brother

    Quote Originally Posted by markmark View Post
    Thank you am try again

    - - - Updated - - -



    THANK you am try again

    - - - Updated - - -




    How to use please

    - - - Updated - - -


    [root@localhost ~]# /root/rules
    /root/rules: line 1: -A: command not found
    /root/rules: line 2: -A: command not found
    /root/rules: line 3: -A: command not found
    /root/rules: line 4: -P: command not found
    /root/rules: line 5: COMMIT: command not found
    [root@localhost ~]#
    [root@localhost ~]#
    [root@localhost ~]# iptables-restore < /root/rules
    iptables-restore: line 1 failed
    [root@localhost ~]#

    please write a full guide on how to secure JD server >___<

  12. #12
    Proficient Member Farrawh is offline
    MemberRank
    Jul 2011 Join Date
    EnglandLocation
    180Posts

    Re: Helpme please ................ brother

    Quote Originally Posted by markmark View Post
    [root@localhost ~]# iptables-restore < /root/rules
    iptables-restore: line 1 failed
    [root@localhost ~]#

    please write a full guide on how to secure JD server >___<
    Mark do what we said in the comments above.

  13. #13
    Account Upgraded | Title Enabled! markmark is offline
    MemberRank
    Aug 2006 Join Date
    217Posts

    Re: Helpme please ................ brother

    Quote Originally Posted by Farrawh View Post
    Mark do what we said in the comments above.
    Am sorry I don't know how to make

  14. #14
    Account Upgraded | Title Enabled! markmark is offline
    MemberRank
    Aug 2006 Join Date
    217Posts

    Re: Helpme please ................ brother

    Quote Originally Posted by extazy20 View Post
    No. That thing you are writing is wrong.

    It should be:
    Please Farrawh help me i use msql phpmyadmin sameple or video pm to me

    Thankyou



Advertisement