Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EN Version of docs #5

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
f3705c4
Update sidebar.md
rawnullbyte Jun 27, 2024
e9b1a8b
Update navbar.md
rawnullbyte Jun 27, 2024
0275161
Update navbar.md
rawnullbyte Jun 27, 2024
30b69ae
Update md8.md
rawnullbyte Jun 27, 2024
c8f570a
Update md7.md
rawnullbyte Jun 27, 2024
3290802
Update md6.md
rawnullbyte Jun 27, 2024
5047b91
Update md4.md
rawnullbyte Jun 27, 2024
dbf51b3
Update md2.md
rawnullbyte Jun 27, 2024
1537880
Update md1.md
rawnullbyte Jun 27, 2024
6cf4763
Update index.html
rawnullbyte Jun 27, 2024
1b24b93
Update coverpage.md
rawnullbyte Jun 27, 2024
44b2461
Update README.md
rawnullbyte Jun 27, 2024
1f90212
Update md0.md
rawnullbyte Jun 27, 2024
2718a21
Update md1.md
rawnullbyte Jun 27, 2024
8056e30
Update md10.md
rawnullbyte Jun 27, 2024
284dc28
Update md11.md
rawnullbyte Jun 27, 2024
531c4c6
Update md12.md
rawnullbyte Jun 27, 2024
b0e9fca
Update md13.md
rawnullbyte Jun 27, 2024
bb637d1
Update md14.md
rawnullbyte Jun 27, 2024
4689955
Update md15.md
rawnullbyte Jun 27, 2024
6ed9222
Update md16.md
rawnullbyte Jun 27, 2024
31d33a7
Update md17.md
rawnullbyte Jun 27, 2024
a94ad12
Update md18.md
rawnullbyte Jun 27, 2024
7081d8f
Update md19.md
rawnullbyte Jun 27, 2024
2fe56fa
Update md2.md
rawnullbyte Jun 27, 2024
0c50b07
Update md20.md
rawnullbyte Jun 27, 2024
b184c97
Update md3.md
rawnullbyte Jun 27, 2024
30c2890
Update md4.md
rawnullbyte Jun 27, 2024
d3cab28
Update md5.md
rawnullbyte Jun 27, 2024
1f2789d
Update md6.md
rawnullbyte Jun 27, 2024
82d76db
Update md7.md
rawnullbyte Jun 27, 2024
4d58965
Update md8.md
rawnullbyte Jun 27, 2024
5aa4a59
Update md9.md
rawnullbyte Jun 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# 简介
# Introduction

jshook是对应用程序注入frida,你只需要会js就可以快速实现hook,并且支持java层和native层,降低开发人员的技术门槛,简化hook流程。
jshook is to inject Frida into the application. You only need to know JS to quickly implement the hook. It supports Java layer and native layer, lowering the technical threshold for developers and simplifying the hook process.
26 changes: 13 additions & 13 deletions api/md0.md
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
# global

简易调用的全局函数
Global function for easy calling

## toast(message)

`参数`:
`parameters`:

`message`: string

## alert(message)

`参数`:
`parameters`:

`message`: string

## confirm(message,callback)

`参数`:
`parameters`:

`message`: string

`callback`: function

示例:
Example:

```javascript
confirm('is ok?', {
ok: function () {
//...
},
cancel: function () {
//...
}
ok: function () {
//...
},
cancel: function () {
//...
}
})
```

## uuid()

返回32位小写uuid
Returns 32-bit lowercase uuid

`返回值`: string
`return value`: string
26 changes: 13 additions & 13 deletions api/md1.md
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
# runtime

用于获取当前hook运行时相关基础信息
Used to obtain basic information related to the current hook runtime

## runtime.appInfo

`返回值`: ApplicationInfo
`Return value`: ApplicationInfo

## runtime.packageName

`返回值`: string
`Return value`: string

## runtime.processName

`返回值`: string
`Return value`: string

## runtime.classLoader

`返回值`: ClassLoader
`Return value`: ClassLoader

## runtime.isKernel

是否在内核模式中
Is it in kernel mode?

`返回值`: boolean
`Return value`: boolean

## runtime.coreVersionCode

获取当前jshook的版本号
Get the current jshook version number

`返回值`: int
`Return value`: int

## runtime.modVersion

获取当前firamod的版本
Get the current firamod version

`返回值`: string
`Return value`: string

## runtime.modVersionCode

获取当前firamod的版本号
Get the current firamod version number

`返回值`: int
`Return value`: int
Loading