티스토리 뷰
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
- shellcode writing
- IE 10 익스플로잇
- WinDbg
- 힙 스프레잉
- 쉘 코드 작성
- data mining
- expdev 번역
- shellcode
- Mona 2
- School CTF Writeup
- TenDollar CTF
- 데이터 마이닝
- 쉘 코드
- School CTF Write up
- CTF Write up
- IE 11 exploit
- IE 11 UAF
- 윈도우즈 익스플로잇 개발
- 2015 School CTF
- IE 10 Exploit Development
- IE UAF
- UAF
- Use after free
- Windows Exploit Development
- IE 11 exploit development
- IE 10 God Mode
- heap spraying
- 2014 SU CTF Write UP
- TenDollar
- IE 10 리버싱
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |