UNDERCODE COMMUNITY
2.68K subscribers
1.23K photos
31 videos
2.65K files
80.4K 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
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ NETFLIX CHANGE EMAIL ADDRESS NEW METHOD
[ Working !
t.me/UndercodeTesting

1) First of all i found the account i wanted to crack then i went to the email address for example : gamersunis@att.net ,

2) i went to google and made a new account and the address was gamersunis@gmail.com , so i made the same name on a diffrent gmail next step was going to the account , login as normal and go down to support then live chat with netflix and wait a bit ,

3) when someone comes in you say i got an email saying a new sign in to my account and it wasnt me ! they will ask for your email address then for your name which you will find in the billing info , after that he will ask for your new email address , so you provide him with the gmail one .

4) and boom ! thats about it Netflix Support: https://help.netflix.com/en/

Enjoy

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

πŸ¦‘ Email and Messaging deepweb :


http://bitmailendavkbec.onion – swiss email
http://365u4txyqfy72nul.onion/ – Anonymous E-mail sevice. You can only communicate with other users currently using this service. So tell all your friends about it!
http://sms4tor3vcr2geip.onion/ – SMS4TOR – Self destructing messages
http://notestjxctkwbk6z.onion/ – NoteBin – Create encrypted self-destructing notes
http://torbox3uiot6wchz.onion/ – [TorBox] The Tor Mail Box
http://u6lyst27lmelm6oy.onion/index.php – Blue matrix chat NOT UP ALL THE TIME so chek often to see

@UndercodeTesting
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘COMMUN ERROR ADB startup failed ADB server didn't ACK :

When starting adb.exe, it prompts ADB server didn't ACK, the problem may be that the port is occupied.

1)adb start-server
prompts ADB server didn't ACK

2)adb nodaemon server
prompts not bind 'tcp: 5037'

3)netstat -ano | findstr "5037" // See who is occupying port 5037
TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 1280

The process id is 1280 and the process name is sjk_daemon.exe

4)taskkill / F / PID 1280 // kill it, if the end fails, please open cmd as an administrator to try
SUCCESS: The process with PID 1280 has been terminated.

5)adb start-server // start again
* daemon not running. Starting it now on port 5037 *
* daemon started successfully *

Prompt this is no problem. If you call with eclipse, it is recommended to restart eclipse.

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

πŸ¦‘For Experts Android to get network status BY Undercode : :

First add permissions in AndroidManifest.xml

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

1) Determine whether there is a network connection

public boolean isNetworkConnected(Context context) {
if (context != null) {
ConnectivityManager mConnectivityManager = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo mNetworkInfo = mConnectivityManager.getActiveNetworkInfo();
if (mNetworkInfo != null) {
return mNetworkInfo.isAvailable();
}
}
return false;
}



public boolean isNetworkConnected(Context context) {
if (context != null) {
ConnectivityManager mConnectivityManager = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo mNetworkInfo = mConnectivityManager.getActiveNetworkInfo();
if (mNetworkInfo != null) {
return mNetworkInfo.isAvailable();
}
}
return false;
}

2) Determine whether the WIFI network is available

public boolean isWifiConnected(Context context) {
if (context != null) {
ConnectivityManager mConnectivityManager = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo mWiFiNetworkInfo = mConnectivityManager
.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
if (mWiFiNetworkInfo != null) {
return mWiFiNetworkInfo.isAvailable();
}
}
return false;
}


Then

> public boolean isWifiConnected(Context context) {
if (context != null) {
ConnectivityManager mConnectivityManager = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo mWiFiNetworkInfo = mConnectivityManager
.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
if (mWiFiNetworkInfo != null) {
return mWiFiNetworkInfo.isAvailable();
}
}
return false;
}

3) Determine whether the MOBILE network is available

public boolean isMobileConnected(Context context) {
if (context != null) {
ConnectivityManager mConnectivityManager = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo mMobileNetworkInfo = mConnectivityManager
.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);
if (mMobileNetworkInfo != null) {
return mMobileNetworkInfo.isAvailable();
}
}
return false;
}

> public boolean isMobileConnected(Context context) {
if (context != null) {
ConnectivityManager mConnectivityManager = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo mMobileNetworkInfo = mConnectivityManager
.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);
if (mMobileNetworkInfo != null) {
return mMobileNetworkInfo.isAvailable();
}
}
return false;
}

4) Determine the network type
public static int GetNetype(Context context)
{
int netType = -1;
ConnectivityManager connMgr = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo networkInfo = connMgr.getActiveNetworkInfo();
if(networkInfo==null)
{
return netType;
}
int nType = networkInfo.getType();
if(nType==ConnectivityManager.TYPE_MOBILE)
{
if(networkInfo.getExtraInfo().toLowerCase().equals("cmnet"))
{
netType = 3;
}
else
{
netType = 2;
}
}
else if(nType==ConnectivityManager.TYPE_WIFI)
{
netType = 1;
}
return netType;
}

> public static int GetNetype(Context context)
{
int netType = -1;
ConnectivityManager connMgr = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo networkInfo = connMgr.getActiveNetworkInfo();
if(networkInfo==null)
{
return netType;
}
int nType = networkInfo.getType();
if(nType==ConnectivityManager.TYPE_MOBILE)
{
if(networkInfo.getExtraInfo().toLowerCase().equals("cmnet"))
{
netType = 3;
}
else
{
netType = 2;
}
}
else if(nType==ConnectivityManager.TYPE_WIFI)
{
netType = 1;
}
return netType;
}
Written by Under code
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
This media is not supported in your browser
VIEW IN TELEGRAM
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ AOXdeface automatic deface many websites at once
t.me/UndercodeTesting

πŸ¦‘π•€β„•π•Šπ•‹π”Έπ•ƒπ•ƒπ•€π•Šπ”Έπ•‹π•€π•†β„• & β„π•Œβ„• :

πŸ¦‘Termux:

pkg install python2
pip2 install requests
pkg install git
git clone https://github.com/Ranginang67/AOXdeface
cd AOXdeface
python2 aox.py

πŸ¦‘Linux:

apt-get install python
apt-get install pthon-pip
pip install requests
apt-get install git
git clone https://github.com/Ranginang67/AOXdeface
cd AOXdeface
python aox.py


@UndercodeTesting
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ¦‘ bin for ebay verified :

Bin : 410040014443xxxx

CVV : RND
Date : 06/23
IP : USA πŸ‡ΊπŸ‡Έ



> how use bin https://t.me/UnderCodeTesting/3768

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

πŸ¦‘Hulu Premium Accounts

pamelama08@yahoo.com:117411
krysthomas22@yahoo.com:12months
nicolebrok@live.com:Dadderco1!
qcedric@hotmail.com:bigmilk59
maxman1128@gmail.com:U81i8123
stevomp@gmail.com:steve31b
rachelkelley73@aol.com:Merrill1
pastorjoedutton@gmail.com:Petra123
nthomas_18@outlook.com:Destiny18!
nkp305@gmail.com:Geffern2
ravenmcelroy13@gmail.com:Regina13
portiakharmon12@gmail.com:Keirra08
nlozar@hotmail.com:neil6345
emilyy.do@gmail.com:march21995
raideret224@gmail.com:killzone1
lock_stephen@yahoo.com:lock6855
njimenez913@yahoo.com:neor9800
quamainknight@yahoo.com:Crownm3
pdipol@liberty.edu:headlock33
perdomofj@hotmail.com:CHOgum1!
rcloyes2878@hotmail.com:A00332878
matt.haldeman@gmail.com:eip9ows4
nicole.pellman5@gmail.com:Pellman15!
tina.cheek@me.com:Cafe6342!
nwangel1999@hotmail.com:Flying1999
nayarabf@gmail.com:casa402
christyrod2003@yahoo.com:crjr6942
matoskashmere@gmail.com:yasmine11
nmonroe023@gmail.com:Veah2004
randy@usgrp.net:letmein1010
plunkett.meghann@gmail.com:laughlaugh
newbernscents@yahoo.com:Taronga
pdsupermom@msn.com:princess
ncldubois@aol.com:Buddy222
ndlutz@gmail.com:unctarheels1757
nwb55@hotmail.com:nina5581
papa8853@live.com:blazeboy97
nickisworking@yahoo.com:cannibal!
jesse_hunt13@hotmail.com:skate1313

▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
This media is not supported in your browser
VIEW IN TELEGRAM
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ Lovoo Premium Accounts with Credits verified


lakiluke5@t-online.de:Spiderman3 | : = 1( 1=H 2=F ) | Age = 23 | Credit = 230 | Ville = Dierdorf
schlueter.mario@t-online.de:Tayson00 | : = 1( 1=H 2=F ) | Age = 24 | Credit = 207 | Ville = Hamburg
tobias-marks@t-online.de:maroeder | : = 1( 1=H 2=F ) | Age = 43 | Credit = 195 | Ville = MΓΌhlhausen/ThΓΌringen
robin.petersen94@t-online.de:airbus1994 | : = 1( 1=H 2=F ) | Age = 26 | Credit = 40 | Ville = Kelly Usa
max.krebs90@t-online.de:Wehrwolf18 |: = 1( 1=H 2=F ) | Age = 29 | Credit = 140 | Ville = Blankenheim
kurt.roell@t-online.de:Melissa1 | : = 1( 1=H 2=F ) | Age = 56 | Credit = 180 | Ville = Sterbfritz, Hessen, Germany
luk-ko@t-online.de:fivegum4 | : = 1( 1=H 2=F ) | Age = 26 | Credit = 175 | Ville = Michelstadt
oskar.fuhrmann@t-online.de:allah123 | : = 1( 1=H 2=F ) | Age = 35 | Credit = 41 | Ville = Berlin
mehr-licht@t-online.de:saffron85 | : = 1( 1=H 2=F ) | Age = 31 | Credit = 10 | Ville = Nantes
steven.zielske@t-online.de:Steven81 | : = 1( 1=H 2=F ) | Age = 38 | Credit = 40 | Ville = Schwerin
broemmethomas@t-online.de:Hakurei4sensei | : = 1( 1=H 2=F ) | Age = 28 | Credit = 100 | Ville = Mainz
wenig.franziska@t-online.de:nissa1708 | : = 2( 1=H 2=F ) | Age = 22 | Credit = 230 | Ville = FΓΌrstenfeldbruck
christianrieder@t-online.de:goldi1998 | : = 2( 1=H 2=F ) | Age = 27 | Credit = 58 | Ville = MΓΌnchen
alexapabst@t-online.de:alexa2010 | : = 2( 1=H 2=F ) | Age = 28 | Credit = 490 | Ville = Dachau
niklas990@t-online.de:ozean1122 | : = 1( 1=H 2=F ) | Age = 21 | Credit = 97 | Ville = Fredersdorf-Vogelsdorf
]

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