Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
36 changes: 36 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
43 changes: 43 additions & 0 deletions .github/workflows/mobsf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: MobSF

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: '25 5 * * 0'

permissions:
contents: read

jobs:
mobile-security:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup python
uses: actions/setup-python@v3
with:
python-version: 3.8

- name: Run mobsfscan
uses: MobSF/mobsfscan@a60d10a83af68e23e0b30611c6515da604f06f65
with:
args: . --sarif --output results.sarif || true

- name: Upload mobsfscan report
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: results.sarif
61 changes: 61 additions & 0 deletions KindleHelper-master/KindleHelper.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2010
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "libZhuishu", "libZhuishu\libZhuishu.csproj", "{326650CB-B2EF-4DB4-990C-95C1E0C5E322}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KindleHelper", "KindleHelper\KindleHelper.csproj", "{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Debug|Any CPU.Build.0 = Debug|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Debug|ARM.ActiveCfg = Debug|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Debug|ARM.Build.0 = Debug|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Debug|x64.ActiveCfg = Debug|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Debug|x64.Build.0 = Debug|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Debug|x86.ActiveCfg = Debug|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Debug|x86.Build.0 = Debug|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Release|Any CPU.ActiveCfg = Release|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Release|Any CPU.Build.0 = Release|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Release|ARM.ActiveCfg = Release|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Release|ARM.Build.0 = Release|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Release|x64.ActiveCfg = Release|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Release|x64.Build.0 = Release|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Release|x86.ActiveCfg = Release|Any CPU
{326650CB-B2EF-4DB4-990C-95C1E0C5E322}.Release|x86.Build.0 = Release|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Debug|ARM.ActiveCfg = Debug|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Debug|ARM.Build.0 = Debug|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Debug|x64.ActiveCfg = Debug|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Debug|x64.Build.0 = Debug|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Debug|x86.ActiveCfg = Debug|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Debug|x86.Build.0 = Debug|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Release|Any CPU.Build.0 = Release|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Release|ARM.ActiveCfg = Release|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Release|ARM.Build.0 = Release|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Release|x64.ActiveCfg = Release|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Release|x64.Build.0 = Release|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Release|x86.ActiveCfg = Release|Any CPU
{7F95AFC8-14CC-4451-BB8C-3E272F1B10BE}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {25C20352-24F0-40E6-8B86-CE0D6E139B6D}
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions KindleHelper-master/KindleHelper/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>
Loading