Skip to content

Instantly share code, notes, and snippets.

@dwisiswant0
Last active January 15, 2020 06:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dwisiswant0/c3ac216bc63c6c2fc6129bfd13e60cb0 to your computer and use it in GitHub Desktop.
Save dwisiswant0/c3ac216bc63c6c2fc6129bfd13e60cb0 to your computer and use it in GitHub Desktop.
@wifi.id Account Checker API

@wifi.id Account Checker API

Extracting username & password of @wifi.id account by just using mac address.

  • Use POST http method.
Resource URL
Parameters
  • mac (required). Checking the mac address whether the account already exists?

Example

Request

$ curl "https://api.dw1.co/wifi.id/check" --data "mac={MAC_ADDRESS_HERE}"

Response (JSON)

If success:

{
    "status": true,
    "account": {
        "username": "....",
        "password": "...."
    }
}

Else:

{
    "status": false
}
@agungsugiarto
Copy link

Halo mas sudah saya coba tapi return selalu false, apa karena mac address atau dari toolnya sudah tidak bisa mas?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment