Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4406,6 +4406,7 @@ Unsuccessful domain name resolution.
```bash
# Dependencies:
# - curl
# - python

function GetASN() {

Expand All @@ -4414,7 +4415,8 @@ function GetASN() {
local _curl_base="curl --request GET"
local _timeout="15"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


_asn=$($_curl_base -ks -m "$_timeout" "http://ip-api.com/line/${_ip}?fields=as")

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

_asn=$($_curl_base -ks -m "$_timeout" "http://ip-api.com/json/${_ip}" | \

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ekdkdk Free Fire ksjnajj

python -c 'import sys, json; print json.load(sys.stdin)["as"]' 2>/dev/null)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


_state=$(echo $?)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


Expand Down