Skip to content

Commit c514377

Browse files
committed
Add tips
1 parent 8629d70 commit c514377

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

src/components/TargetFuncTip.vue

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<template>
2+
<div class="card mb-4" v-if="show">
3+
<div class="card-body">
4+
<h5 class="card-title">How to get the name of target function?</h5>
5+
<p class="card-text">
6+
Maybe you can find parts like this:
7+
</p>
8+
<div class="codeblock">
9+
<span class="target">_0x439c</span>[103]
10+
</div>
11+
<div class="codeblock">
12+
<span class="target">_0x439c</span>('0x4')
13+
</div>
14+
<div class="codeblock">
15+
<span class="target">_0x439c</span>('0x2','f]Xg')
16+
</div>
17+
<p class="card-text">
18+
In this case, target function name is <span class="target">_0x439c</span>
19+
</p>
20+
<a href="#" class="btn btn-warning" style="width: 6rem;" @click="toggle">Close</a>
21+
</div>
22+
</div>
23+
</template>
24+
25+
<script>
26+
export default {
27+
data() {
28+
return {
29+
show: false,
30+
}
31+
},
32+
methods: {
33+
toggle() {
34+
this.show = !this.show;
35+
}
36+
}
37+
}
38+
</script>

0 commit comments

Comments
 (0)