티스토리 뷰
This post is a cheat sheet for MongoDB. This cheat sheet is not technical, maybe you can use this when you cooking.
# Find all data in collection
Usage:
db.collection.find({})
# Find if it has specific key
Syntax: $exists
{<Field>: {$exists: <boolean>}}
Usage:
db.collection.find({"field": {"$exists": true}})
Reference:
http://docs.mongodb.org/manual/reference/operator/query/exists/
# Delete Key ( $unset )
Syntax: $unset
{$unset : {<Field>: "", ...}}
Usage:
db.collection.update({"field": condition}, {"$unset": {"del_key_field": ""}})
-> In unset operation, empty string value of "del_key" key means nothing
If you use it then delete only one document. So, if you want to delete multiple document which satisfied by the condition, then setting upsert as False and multiple as True like this
db.collection.update({"field": condition}, {"$unset": {"del_key_field": ""}}, false, true)
The 3rd option is upsert (False), and the 4th option is multiple.
Reference:
http://docs.mongodb.org/manual/reference/operator/update/unset/
- Total
- Today
- Yesterday
- Use after free
- 쉘 코드 작성
- UAF
- IE 10 익스플로잇
- shellcode writing
- School CTF Writeup
- IE 11 UAF
- Mona 2
- shellcode
- IE 11 exploit development
- IE 10 God Mode
- IE 10 Exploit Development
- Windows Exploit Development
- 윈도우즈 익스플로잇 개발
- IE 10 리버싱
- School CTF Write up
- expdev 번역
- data mining
- IE 11 exploit
- IE UAF
- TenDollar
- CTF Write up
- 힙 스프레잉
- 2015 School CTF
- 2014 SU CTF Write UP
- WinDbg
- heap spraying
- 쉘 코드
- 데이터 마이닝
- TenDollar CTF
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |