mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2026-04-18 21:11:55 +02:00
Shortened payload
Make payload shorter.
This commit is contained in:
parent
fbed4254e5
commit
a8d8434756
1 changed files with 1 additions and 1 deletions
|
|
@ -780,7 +780,7 @@ window["doc"+"ument"]
|
|||
This is another way to access cookies on Chrome, Edge, and Opera. Replace COOKIE NAME with the cookie you are after. You may also investigate the getAll() method if that suits your requirements.
|
||||
|
||||
```
|
||||
Promise.resolve(window.cookieStore.get('COOKIE NAME')).then((cookieValue)=>{alert(cookieValue.value);});
|
||||
window.cookieStore.get('COOKIE NAME').then((cookieValue)=>{alert(cookieValue.value);});
|
||||
```
|
||||
|
||||
### Bypass using javascript inside a string
|
||||
|
|
|
|||
Loading…
Reference in a new issue