As you guys know Vcmp has now more hackers
Many of these hackers are using VPNs to bypass their bans and return to the server. Additionally, banning their UIDS are useless too
I've heard that many other servers are successfully utilizing VPN detection to address this problem. I've tried searching for information on VPN detection in this forum, but it appears that no one has shared any relevant solutions yet.
Currently, my server's script is based on the Squirrel language, and I'm actively seeking guidance on how to implement VPN detection. Kindly if someone can guide me it would be appreciated
Did they bypass UID?
Quote from: habi on Jul 18, 2023, 11:26 AMDid they bypass UID?
Yeh, installing the new windows also, most of hackers use UID changer
Please guide me about VPN detection system
Thank you
Quote from: Nihongo^ on Jul 18, 2023, 12:36 PMQuote from: habi on Jul 18, 2023, 11:26 AMDid they bypass UID?
Yeh, installing the new windows also, most of hackers use UID changer
Please guide me about VPN detection system
Thank you
Also vpn detection is not enough, simply the user can change his wifi or something like that, i think the best solution is make a system to remember player bios serial-number, or motherboard ID like that, some admins use keyboard & mouse ids, and unfortunately users can change everything, the operations just take some times by using a spoofer, or change the ids manually.
I found a way to check for vpn:
https://proxycheck.io/v2/xxx.xxx.xxx.xxx?vpn=1&asn=1
where you have to replace xxx with ip address.
Do a GET request and see reply of it.
{
"status": "ok",
"79.137.85.208": {
"asn": "AS16276",
"provider": "OVH SAS",
"organisation": "OVH",
"continent": "Europe",
"continentcode": "EU",
"country": "France",
"isocode": "FR",
"region": "Hauts-de-France",
"regioncode": "HDF",
"timezone": "Europe/Paris",
"city": "Roubaix",
"postcode": "59100",
"latitude": 50.6917,
"longitude": 3.2016,
"currency": {
"code": "EUR",
"name": "Euro",
"symbol": "€"
},
"proxy": "yes",
"type": "VPN"
}
}
Quote from: habi on Jul 19, 2023, 04:46 AMI found a way to check for vpn:
https://proxycheck.io/v2/xxx.xxx.xxx.xxx?vpn=1&asn=1
where you have to replace xxx with ip address.
Do a GET request and see reply of it.
{
"status": "ok",
"79.137.85.208": {
"asn": "AS16276",
"provider": "OVH SAS",
"organisation": "OVH",
"continent": "Europe",
"continentcode": "EU",
"country": "France",
"isocode": "FR",
"region": "Hauts-de-France",
"regioncode": "HDF",
"timezone": "Europe/Paris",
"city": "Roubaix",
"postcode": "59100",
"latitude": 50.6917,
"longitude": 3.2016,
"currency": {
"code": "EUR",
"name": "Euro",
"symbol": "€"
},
"proxy": "yes",
"type": "VPN"
}
}
I see, but how do a script understand the link? I have squirrel language server and afaik there's no way to insert a link in this language
Quote from: vitovc on Jul 19, 2023, 08:57 AMQuote from: Nihongo^ on Jul 19, 2023, 08:07 AMI see, but how do a script understand the link? I have a squirrel language server, and afaik there's no way to insert a link in this language
try to use search function of internet https://forum.vc-mp.org/index.php?topic=7522.0
Thanks for sharing such an informative link; let me try to utilize it on my own.
I'll come back if i need help
Thank you
P.S if anybody give me some advice would be appreciate