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
@@ expression c; @@ - &c->maybe_tree->object.oid + get_commit_tree_oid(c) @@ expression c; @@ - c->maybe_tree->object.oid.hash + get_commit_tree_oid(c)->hash @@ identifier f !~ "^set_commit_tree$"; expression c; expression s; @@ f(...) {<... - c->maybe_tree = s + set_commit_tree(c, s) ...>} // These excluded functions must access c->maybe_tree directly. // Note that if c->maybe_tree is written somewhere outside of these // functions, then the recommended transformation will be bogus with // repo_get_commit_tree() on the LHS. @@ identifier f !~ "^(repo_get_commit_tree|get_commit_tree_in_graph_one|load_tree_for_commit|set_commit_tree)$"; expression c; @@ f(...) {<... - c->maybe_tree + repo_get_commit_tree(specify_the_right_repo_here, c) ...>} @@ struct commit *c; expression E; @@ ( - c->generation = E; + commit_graph_data_at(c)->generation = E; | - c->graph_pos = E; + commit_graph_data_at(c)->graph_pos = E; | - c->generation + commit_graph_generation(c) | - c->graph_pos + commit_graph_position(c) )