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 see ip in linux 
Shell :: gitignore file download 
Shell :: bin bash header 
Shell :: bash change command prompt 
Shell :: netcat reverse shell 
Shell :: linux up one directory 
Shell :: update ruby version ubuntu 
Shell :: remote repo push 
Shell :: git clone private repo 
Shell :: why gitignore does not work 
Shell :: search for ADS 
Shell :: install windows fonts on linux 
Shell :: cmd file list to text 
Shell :: how to make a react project a githubpages site 
Shell :: hobo list services 
Shell :: git@github.com: Permission denied (publickey). fatal: Could not read from remote repository. 
Shell :: umask 
Shell :: Could not extract RVM sources 
Shell :: get current directory batch 
Shell :: set remote git 
Shell :: deleting index.lock 
Shell :: watchman installation 
Shell :: mac quit finder 
Shell :: cache clear env prod symfony 3.4 
Shell :: pm2 remove process from list 
Shell :: it is required that your private key files are not accessible by others ubuntu 
Shell :: phpinfo cli 
Shell :: npm install --no-audit --save @testing-library/jest-dom@^5.14.1 @testing-library/react@^13.0.0 @testing-library/user-event@^13.2.1 web-vitals@^2.1.0` failed 
Shell :: how to run multiple npm scripts parallel 
Shell :: openssh setup firewall on windows 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =