File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments