Skip to content

Example of how to POST data to eCX /phish endpoint using cURL on the command line

Notifications You must be signed in to change notification settings

APWG/post-cli-curl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

curl -X POST \
  https://api.ecrimex.net/phish \
  -H 'Authorization: <your eCX API token key goes here>' \
  -H 'Content-Type: application/json' \
  -d '{
  "url": "http://schoolbusinessalert.space/sd/",
  "brand": "University of South Wales",
  "date_discovered": 1539429978,
  "confidence_level": 100
}'
curl --request POST \
  --url https://api.ecrimex.net/phish \
  --header 'Authorization: <your eCX API token key goes here>' \
  --header 'Content-Type: application/json' \
  --data '{"url": "http://schoolbusinessalert.space/sd/","brand": "University of South Wales","date_discovered": 1539429978,"confidence_level": 100}'

About

Example of how to POST data to eCX /phish endpoint using cURL on the command line

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published