Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

whats my ip

checking your vpn Right?:)
Comment

my ip

ok now your VPN worked? 
are u from Iran and trying to catch new youtube shits?
are u trying watch porn ? 
or might u be blocked by google if u are just 
use shecan.ir and u will be fine 
Comment

my ip

Always make sure not to give your public IP address to anyone who you DON'T trust
Comment

whats my ip

So... we testing our VPN?
Comment

get my ip

curl ipinfo.io/ip
Comment

my ip

# Get your ip public
curl ipinfo.io/ip

# More specific
curl ipinfo.io/{param}

# Param-List:
# ip
# hostname
# city
# region
# loc
# org
# country
# timezone
Comment

my ip

# Print my public IP
dig +short myip.opendns.com @resolver1.opendns.com
# Output
77.122.128.246

# Store IP in Bash Variable
myip="$(dig +short myip.opendns.com @resolver1.opendns.com)"
Comment

wahts my ip

Dont give this to people unless you really know what youre doing
Comment

what is my ip address ?

curl ifconfig.co
Comment

my ip

I am just trying a VPN and it's working great :D
Comment

my ip

Be sure you know what you're doing when giving this info to people. they can find lots of details with it.
Comment

my ip

Only Share This if you are hosting a server or something and you know what ur doing.
Comment

my ip

input("checking if your vpn is connected right?") #:)
Comment

my ip adress

make sure people dont ddos you if you give them this!
Comment

what is my ip

// open cmd
c:>ipconfig
Comment

what is my ip

Never Share your "IP address" to anyone, 
it can be used to access your Device and data.

to see ip using command(Windows)
//See your internal ip on any windows
Search -> Write:cmd-> command <ipconfig>

foc Mac OS
1-    command <ipconfig getifaddr en1> For wired connections, enter into the Terminal and your local IP will appear.
2-    command <ipconfig getifaddr en0> For Wi-Fi, enter and your local IP will appear.
Comment

my ip

public VPNs are not safe. you want a good VPN host it yourself and its cheaper lol
Comment

my ip

DONT share it with anyone, unless you are aware of what your doing
Comment

my ip

An IP is a unique number assigned to all information technology connected devices such as printers, routers, modems, and even refrigerators
Comment

my ip

// IP address => Internet Protocol address
Comment

what is my ip?

I don't know, but I have it

@echo off
curl ipinfo.io
pause
Comment

my ip

ip route get 8.8.8.8 | awk -F"src " 'NR==1{split($2,a," ");print a[1]}'
ip route get 8.8.8.8 | awk 'match($0,/src (S*)/,a)&&$0=a[1]'
ip route get 8.8.8.8 | awk '{for(i=1;i<=NF;i++)if($i~/src/)$0=$(i+1)}NR==1'

ip route get 8.8.8.8 | sed -E 's/.*src (S+) .*/1/;t;d'
ip route get 8.8.8.8 | sed 's/.*src ([^ ]*).*/1/;t;d'
ip route get 8.8.8.8 | sed  -nE '1{s/.*?src (S+) .*/1/;p}'

ip route get 8.8.8.8 | grep -oP 'src K[^ ]+'
10.36.15.150
Comment

my ip

my_ip=$(ip route get 8.8.8.8 | awk -F"src " 'NR==1{split($2,a," ");print a[1]}')

my_interface=$(ip route get 8.8.8.8 | awk -F"dev " 'NR==1{split($2,a," ");print a[1]}')
Comment

my ip

ip route get 8.8.8.8 | awk -F"dev " 'NR==1{split($2,a," ");print a[1]}'
ip route get 8.8.8.8 | awk 'match($0,/dev (S*)/,a)&&$0=a[1]'
ip route get 8.8.8.8 | awk '{for(i=1;i<=NF;i++)if($i~/dev/)$0=$(i+1)}NR==1'

ip route get 8.8.8.8 | sed -E 's/.*?dev (S+) .*/1/;t;d'
ip route get 8.8.8.8 | sed 's/.*dev ([^ ]*).*/1/;t;d'
ip route get 8.8.8.8 | sed  -nE '1{s/.*?dev (S+) .*/1/;p}'

ip route get 8.8.8.8 | grep -oP 'dev K[^ ]+'
ens192
Comment

what is my ip

your ip adress is different in all wifi.
Comment

my ip

pls tell me
Comment

what is my ip

testing the vpn i see.
Comment

PREVIOUS NEXT
Code Example
Shell :: how to delete files in linux 
Shell :: args in shell 
Shell :: Change git Committer Date 
Shell :: install grub manually 
Shell :: npm colors 
Shell :: push imagesto docker 
Shell :: merge master into local branch 
Shell :: ubuntu clone git repository 
Shell :: npm install webpack server 
Shell :: ubuntu default tmux shell 
Shell :: where to store env file in firebase functions 
Shell :: chmod chown 
Shell :: git config global username and email 
Shell :: copy to clipboard while ssh into another terminal 
Shell :: node version manager 
Shell :: command to start a system service 
Shell :: get linux directory size 
Shell :: wget debian to Downloads 
Shell :: how to install and connect to ftp on ubuntu 18 
Shell :: write a script to shutdown at a time in linux 
Shell :: redis scan keys and print values shell 
Shell :: ubuntu essential commands 
Shell :: otu table tsv in biom 
Shell :: daily bing ubuntu 
Shell :: dockerfile from local image 
Shell :: install h5py ubuntu 20.04 pip 
Shell :: The fingerprint for the RSA key sent by the remote host is 
Shell :: jq for xml 
Shell :: git get stash on another pc 
Shell :: How to add and commit files to a Git repository 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =