Teamspeak 3 Server Crack 3.0.11.4

Do you like this script?


  • Total voters
    344
Status
Not open for further replies.

bl4uni

Active Member
Sep 10, 2015
106
69
73
or use the web interface i posted lets you make more servers and define the port ;)
https://www.r4p3.net/threads/teamspeak-3-webinterface-by-psychokiller.72/
The Psychokiller Interface is the worst. Spend the developer of YatQa a dollar and you can create as many servers as you want. Although 13 (or 14 not sure) should be enough if youre not really planning on renting teamspeak servers with a cracked license. You can also define the port using the free version without problems.
 
Jul 15, 2015
49
25
53
I don't know if there was already said but the "anticrack" doesn't work in the linux installer and the reason is simple :
- The "anticrack" add a rule in iptables :
Code:
set_iptables(){
printf "${COLOR1}#######################################################\n#     Note: Your server will appear as                #\n#     \"not cracked\" to CrackCheckers if activated.    #\n#     1) Activate AntiCrack                           #\n#     2) Deactivate AntiCrack                         #\n#######################################################\nAnswer:   ${NC}"
read answer
iptables -D INPUT -p tcp --dport 2008 -j DROP 2>/dev/null
case $answer in
1)
iptables -I INPUT -p tcp --dport 2008 -j DROP
printf "${COLOR1}AntiCrack activated.\n${NC}"
;;
*)
printf "${COLOR2}AntiCrack deactivated.\n${NC}"
;;
esac
iptables-save
}
This rule :
Code:
 iptables -I INPUT -p tcp --dport 2008 -j DROP
blocked all tcp packet from 2008 port and this is OK but this rule didn't allow the accounting connection (even on localhost) on starting of TS ..

So... we got this error :
|ERROR | | | TS3ANetwork::Connect failed error: 110
To fix this problem we have to add a new rule to allow only localhost connection on 2008 TCP port :
Code:
iptables -I INPUT -p tcp --dport 2008 -s 127.0.0.1 -j ACCEPT
The fix of this problem need to be add on the linux installer. ;) Happy to help you.
 

Supervisor

Administrator
Apr 27, 2015
1,863
2,546
335
Thanks for your reply. I wanted to add that earlier on, but forgot about that. Actually, what you CAN do (as far as I know at least) is this:
iptables -I INPUT -p tcp -d 127.0.0.1 --dport 2008 -j ACCEPT
iptables -I INPUT -p tcp -d 0.0.0.0 --dport 2008 -j DROP
I will test it, but I guess it sould work. Any further suggestions? :D All you'll do is to make the script better haha

/edit: I just saw that you already posted the solution. Thanks a lot!
It's great to have you here :)
 
Jul 15, 2015
49
25
53
I added this rule :
iptables -I INPUT -p tcp --dport 2008 -j DROP
iptables -I INPUT -p tcp --dport 2008 -s 127.0.0.1 -j ACCEPT

and it work seem as
iptables -I INPUT -p tcp -d 127.0.0.1 --dport 2008 -j ACCEPT
iptables -I INPUT -p tcp -d 0.0.0.0 --dport 2008 -j DROP

I don't have any suggestion, just want to thanks you for your work even if i prefere manual installation to understand all steps and possible problem who could appear; )
 

Supervisor

Administrator
Apr 27, 2015
1,863
2,546
335
So this is the code right now, thanks again :)
Code:
set_iptables(){
printf "${COLOR1}#######################################################\n#  Note: Your server will appear as  #\n#  \"not cracked\" to CrackCheckers if activated.  #\n#  1) Activate AntiCrack  #\n#  2) Deactivate AntiCrack  #\n#######################################################\nAnswer:  ${NC}"
read answer
case $answer in
1)
iptables -I INPUT -p tcp --dport 2008 -j DROP
iptables -I INPUT -p tcp --dport 2008 -s 127.0.0.1 -j ACCEPT
printf "${COLOR1}AntiCrack activated.\n${NC}"
;;
*)
iptables -D INPUT -p tcp --dport 2008 -j DROP 2>/dev/null
iptables -D INPUT -p tcp --dport 2008 -s 127.0.0.1 -j ACCEPT 2>/dev/null
printf "${COLOR2}AntiCrack deactivated.\n${NC}"
;;
esac
iptables-save
}
 

Wrath X

Member
Oct 2, 2015
96
34
53
I edited the script like in your post. But still not working for me. I cant fix this "-> Accounting server is not running! "
 

Supervisor

Administrator
Apr 27, 2015
1,863
2,546
335
But where is the download ? I have problem with v0.5.15.
When you start the script, it will update automatically.
I edited the script like in your post. But still not working for me. I cant fix this "-> Accounting server is not running! "
I'm testing my script right now, but it seems to be everything fine so far..

Why did you edit your script? What did you edit? If you talk about the iptables rules, I already changed that in 0.5.16
 

Gazda

Restricted
Oct 2, 2015
12
1
35
I started the script but still not that we update..
ts3crack_0510 the latest version at my server
 

Supervisor

Administrator
Apr 27, 2015
1,863
2,546
335
it should update than.. except you deactivated the update function. You may as well just download the new script
 

Wrath X

Member
Oct 2, 2015
96
34
53
Hello,
I am try to use Anticrash Ccripts, it says Activated but Status says Accounting Server is not running.
But btw my server is still running for 1 day and 12 hour. It didnt crash.

B4X3r9.png


zYR9MY.png
 

Supervisor

Administrator
Apr 27, 2015
1,863
2,546
335
well, the Status is only looking for proccesses with specific names -> did you rename your accountingemulator? If so, it won't show up there.
The tsdnsserver has to be started manually the first time. (Thats why it is not showing up there)

So..your AccountingServer is running. Otherwise your TeamSpeak server would not have stayed online for that long :)
 

Wrath X

Member
Oct 2, 2015
96
34
53
Hello,
Im not rename the accountingemulator but i guess there is no problem for me and I guess I found a bug, I changed the server query port with script when I am setup the server. After check the server query port is still default (10011). I check the ts3server.ini it was okey it changed. But I check ts3server_startscript.sh and I found a problem in this. It was
COMMANDLINE_PARAMETERS="${2}" and the code is wrong. I edit this like this : COMMANDLINE_PARAMETERS="inifile=ts3server.ini" and query port is changed it is okey now.
 

Supervisor

Administrator
Apr 27, 2015
1,863
2,546
335
you are correct. it should look like this:
Code:
COMMANDLINE_PARAMETERS="${2} inifile=ts3server.ini"
I'll change that within the next update
 
  • Like
Reactions: Pim

Kvnx

Member
Oct 2, 2015
7
0
33
Hello, my problem:
2015-10-05 15:31:00.923398|WARNING | | | Accounting connection stalled
2015-10-05 15:31:45.496353|ERROR | | | TS3ANetwork::Recv failed error: 104
2015-10-05 15:31:45.496882|ERROR | | | read invalid packet size size
2015-10-05 15:31:45.514562|ERROR |Accounting | | Unable to connect to accounting server
-- Accounting server is running, hosts file is correct,
PING accounting.teamspeak.com (127.0.0.1) 56(84) bytes of data.
64 bytes from localhost (127.0.0.1): icmp_req=1 ttl=64 time=0.022 ms
64 bytes from localhost (127.0.0.1): icmp_req=2 ttl=64 time=0.031 ms
netstat:
tcp 0 0 0.0.0.0:2008 0.0.0.0:* LISTEN 8049/AccountingServ
ts3accserveremu.log is empty
top:
8049 ts3 20 0 1004 32 0 S 0,0 0,0 0:00.00 AccountingServe
what did I do wrong? OP: debian 7 x86
 

Supervisor

Administrator
Apr 27, 2015
1,863
2,546
335
2015-10-05 15:31:45.496882|ERROR | | | read invalid packet size size
-> check your hosts file again..
 
Status
Not open for further replies.
Top