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