Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
git /
contrib /
coccinelle /
Delete
Unzip
Name
Size
Permission
Date
Action
README
2.08
KB
-rw-r--r--
2021-11-25 04:29
array.cocci
1.31
KB
-rw-r--r--
2021-11-25 04:29
commit.cocci
1
KB
-rw-r--r--
2021-11-25 04:29
flex_alloc.cocci
266
B
-rw-r--r--
2021-11-25 04:29
free.cocci
146
B
-rw-r--r--
2021-11-25 04:29
hashmap.cocci
280
B
-rw-r--r--
2021-11-25 04:29
object_id.cocci
1.25
KB
-rw-r--r--
2021-11-25 04:29
preincr.cocci
50
B
-rw-r--r--
2021-11-25 04:29
qsort.cocci
610
B
-rw-r--r--
2021-11-25 04:29
strbuf.cocci
867
B
-rw-r--r--
2021-11-25 04:29
swap.cocci
280
B
-rw-r--r--
2021-11-25 04:29
the_repository.pending.cocci
1.99
KB
-rw-r--r--
2021-11-25 04:29
xcalloc.cocci
96
B
-rw-r--r--
2021-11-25 04:29
xopen.cocci
295
B
-rw-r--r--
2021-11-25 04:29
xstrdup_or_null.cocci
161
B
-rw-r--r--
2021-11-25 04:29
Save
Rename
@@ struct object_id OID; @@ - is_null_sha1(OID.hash) + is_null_oid(&OID) @@ struct object_id *OIDPTR; @@ - is_null_sha1(OIDPTR->hash) + is_null_oid(OIDPTR) @@ struct object_id OID; @@ - hashclr(OID.hash) + oidclr(&OID) @@ identifier f != oidclr; struct object_id *OIDPTR; @@ f(...) {<... - hashclr(OIDPTR->hash) + oidclr(OIDPTR) ...>} @@ struct object_id OID1, OID2; @@ - hashcmp(OID1.hash, OID2.hash) + oidcmp(&OID1, &OID2) @@ identifier f != oidcmp; struct object_id *OIDPTR1, OIDPTR2; @@ f(...) {<... - hashcmp(OIDPTR1->hash, OIDPTR2->hash) + oidcmp(OIDPTR1, OIDPTR2) ...>} @@ struct object_id *OIDPTR; struct object_id OID; @@ - hashcmp(OIDPTR->hash, OID.hash) + oidcmp(OIDPTR, &OID) @@ struct object_id *OIDPTR; struct object_id OID; @@ - hashcmp(OID.hash, OIDPTR->hash) + oidcmp(&OID, OIDPTR) @@ struct object_id *OIDPTR1; struct object_id *OIDPTR2; @@ - oidcmp(OIDPTR1, OIDPTR2) == 0 + oideq(OIDPTR1, OIDPTR2) @@ identifier f != hasheq; expression E1, E2; @@ f(...) {<... - hashcmp(E1, E2) == 0 + hasheq(E1, E2) ...>} @@ struct object_id *OIDPTR1; struct object_id *OIDPTR2; @@ - oidcmp(OIDPTR1, OIDPTR2) != 0 + !oideq(OIDPTR1, OIDPTR2) @@ identifier f != hasheq; expression E1, E2; @@ f(...) {<... - hashcmp(E1, E2) != 0 + !hasheq(E1, E2) ...>}