Password Pusher-logo
Password pusher
Please follow Sagiss password standards

Værktøjer og applikationer

Ved hjælp af JSON API findes der forskellige værktøjer til at interface med Password Pusher for at automatisere adgangskodedistribution.

We have no limits on how many passwords you can push (and have no intentions of adding limits) but we do have a rate limiter so the site doesn’t get taken down by bad scripts or bad actors. Limit your tools to maximum 1 password every few seconds and you should be fine.

JSON API

This API allows you to interface with Password Pusher via JSON. This can be utilized by existing utilities such as curl, wget or any programming language. See the examples below for some ideas.

Eksempler
Curl
curl -X POST --data "password[payload]=mypassword&password[expire_after_days]=2&password[expire_after_views]=10" https://pwpush.com/p.json
Browser Dev Console

Du kan teste dette i din browsers Javascript-konsol ved at gå til forsiden af Password Pusher og indtaste:

 $.post('https://pwpush.com/p.json',
         { 'password[payload]': 'mypassword', 'password[expire_after_days]': '2',
           'password[expire_after_views]': '10' }, 
           function(data) { console.log('Share this secret URL: https://pwpush.com/p/' + data.url_token) } )

Se flere forklaringer og eksempler i vores Github Wiki.