找到
12
篇与
必备
相关的结果
-
站长必备!hackingtool 效率神器分享 推荐一个实用的开源工具——**hackingtool**。项目由Z4nzu开发维护,GitHub上获得了 **79344** 个Star。简单来说,它是一款面向黑客的一体化黑客工具,对于站长和开发者来说是个不错的工具。 # # 工具功能介绍 **215 curated tools across 21 categories** — recon, OSINT, web, wireless, phishing, forensics, post-exploitation and more — with an **AI layer that turns plain English into the right tool and the exact command**.**Built for** penetration testers · red teamers · blue-team/SOC and DFIR analysts · OSINT researchers · bug-bounty hunters · CTF players · security researchers and students — all working **legally, on systems they own or are authorised to test**.      ---## Contents- [Why hackingtool](#why-hackingtool) - [Tool Categories](#tool-categories) - [Installation](#installation) - [From source with pipx (recommended)](#from-source-with-pipx-recommended) - [For development](#for-development) - [Docker](#docker) - [Optional runtimes](#optional-runtimes) - [Quick Commands](#quick-commands) - [Command reference](#command-reference) - [Features](#features) - [🔎 `/find` — a tool for a need you don't have yet](#-find--a-tool-for-a-need-you-dont-have-yet) - [🎯 `/goal` — plan an objective, run it one step at a time](#-goal--plan-an-objective-run-it-one-step-at-a-time) - [🧠 Recommendations — say what you want in plain English](#-recommendations--say-what-you-want-in-plain-english) - [🏷 Tags and search](#-tags-and-search) - [▶ Background panes (tmux)](#-background-panes-tmux) - [⚙ Settings and the AI layer](#-settings-and-the-ai-layer) - [📋 Headless engagements](#-headless-engagements) - [Documentation](#documentation) - [Contributing](#contributing) - [Support & Sponsor](#support--sponsor) - [Social](#social)---## Why hackingtool- **🧠 AI-guided workflow** — describe what you want ("find subdomains of example.com") and it maps your intent to the right tools, hands you the exact documented command, plans an objective step by step, then summarizes findings and drafts an engagement report. Bring your own key or run a local model — nothing auto-executes and nothing is fabricated. - **🗂 215 curated tools, one console** — install and run across 21 categories without hunting down Git repos; a fixed tag taxonomy (63 tags in use) makes every tool discoverable. - **🔎 It knows what it doesn't have** — `/find` searches your catalog first, then the GitHub API, and shows real maintained projects with the reason each was ranked. - **🛡 Safe by default** — standard installs, **no `curl | bash`**, downloads pinned + SHA-256 verified, list-form `subprocess`, no forced `sudo`, and [signed releases with an SBOM](SECURITY.md#verifying-a-release). - **🎯 For the whole spectrum** — red team, blue team, OSINT, bug bounty, CTF/THM, forensics/IR — all on **authorized targets only**.The console on launch — live system readout, and / opens the command palette. ---## Tool Categories**215 tools across 21 categories** — the full list, with links and tags, is in **[docs/TOOLS.md](docs/TOOLS.md)**.| # | Category | Tools | | # | Category | Tools | |:---:|---|:---:|---|:---:|---|:---:| | 1 | 🛡 [Anonymously Hiding Tools](docs/TOOLS.md#-anonymously-hiding-tools) | 5 | | 12 | 🔁 [Reverse engineering tools](docs/TOOLS.md#-reverse-engineering-tools) | 10 | | 2 | 🔍 [Information gathering tools](docs/TOOLS.md#-information-gathering-tools) | 26 | | 13 | ⚡ [DDOS Attack Tools](docs/TOOLS.md#-ddos-attack-tools) | 7 | | 3 | 📚 [Wordlist Generator](docs/TOOLS.md#-wordlist-generator) | 8 | | 14 | 🖥 [Remote Administrator Tools (RAT)](docs/TOOLS.md#-remote-administrator-tools-rat) | 4 | | 4 | 📡 [Wireless attack tools](docs/TOOLS.md#-wireless-attack-tools) | 17 | | 15 | 🧪 [XSS Attack Tools](docs/TOOLS.md#-xss-attack-tools) | 6 | | 5 | 💉 [SQL Injection Tools](docs/TOOLS.md#-sql-injection-tools) | 7 | | 16 | 🖼 [Steganography Tools](docs/TOOLS.md#-steganography-tools) | 10 | | 6 | 🎣 [Phishing attack tools](docs/TOOLS.md#-phishing-attack-tools) | 13 | | 17 | 🏢 [Active Directory Tools](docs/TOOLS.md#-active-directory-tools) | 10 | | 7 | 🌐 [Web Attack tools](docs/TOOLS.md#-web-attack-tools) | 23 | | 18 | ☁ [Cloud Security Tools](docs/TOOLS.md#-cloud-security-tools) | 7 | | 8 | 🔧 [Post exploitation tools](docs/TOOLS.md#-post-exploitation-tools) | 15 | | 19 | 📱 [Mobile Security Tools](docs/TOOLS.md#-mobile-security-tools) | 6 | | 9 | 🕵 [Forensic tools](docs/TOOLS.md#-forensic-tools) | 12 | | 20 | ✨ [Other tools](docs/TOOLS.md#-other-tools) | 10 | | 10 | 📦 [Payload creation tools](docs/TOOLS.md#-payload-creation-tools) | 6 | | 21 | 🔑 [Password / Hash Cracking](docs/TOOLS.md#-password--hash-cracking) | 7 | | 11 | 🧰 [Exploit framework](docs/TOOLS.md#-exploit-framework) | 6 | | | | |59 further entries are archived (unmaintained or dead upstream) and hidden unless you set `show_archived true` via `/config`. The in-app header counts 22 categories / 217 tools because it also counts the built-in Update / Uninstall menu.---## Installation Requires **Python 3.10+** on **Linux or macOS** (Kali, Parrot, Debian/Ubuntu, Arch, …). Windows is not supported — the app tells you so and exits. No `curl | bash`: every path below is a standard, verifiable install.### From source with pipx (recommended)[pipx](https://pipx.pypa.io) installs hackingtool into its own isolated environment and puts the `hackingtool` command on your PATH, so you can launch it from any directory. bash # 1 — get the code git clone https://github.com/Z4nzu/hackingtool.git cd hackingtool # 2 — install it onto your PATH (isolated venv, no system Python touched) pipx install . # 3 — run it from anywhere hackingtool No pipx yet? bash # macOS brew install pipx && pipx ensurepath # Debian / Ubuntu / Kali sudo apt install pipx && pipx ensurepath Open a new shell after `pipx ensurepath` so the PATH change takes effect. To update later: `git pull && pipx install . --force`. To remove it: `pipx uninstall hackingtool`. Alternative: uv tool install . (same result, uses uv instead of pipx) bash git clone https://github.com/Z4nzu/hackingtool.git cd hackingtool uv tool install . # installs the `hackingtool` executable on your PATH hackingtool Alternative: plain venv + pip (no PATH changes) bash git clone https://github.com/Z4nzu/hackingtool.git cd hackingtool python3 -m venv .venv && . .venv/bin/activate pip install . # or: pip install -e . for an editable dev install hackingtool The command is only on your PATH while that venv is activated. ### For development[uv](https://docs.astral.sh/uv/) creates the virtualenv and installs everything from `pyproject.toml` / `uv.lock` in one step: bash git clone https://github.com/Z4nzu/hackingtool.git cd hackingtool uv sync uv run hackingtool No uv yet? `pipx install uv` (or see the [uv install docs](https://docs.astral.sh/uv/getting-started/installation/)).**Contributing?** `make setup` wires the pre-push hook and `make check` runs the full gate (lint + tests + catalog validation). See [CONTRIBUTING.md](CONTRIBUTING.md).### Docker Pull and run the published : bash docker run -it --rm hardikzinzu/hackingtool:latest Or build it locally from a checkout: bash git clone https://github.com/Z4nzu/hackingtool.git && cd hackingtool docker build -t hackingtool . docker run -it --rm hackingtool ### Optional runtimesSome individual tools need a language runtime to install/run; the core app doesn't.| Dependency | Version | Needed for | |---|---|---| | Go | 1.21+ | nuclei, ffuf, amass, httpx, katana, dalfox, gobuster, subfinder | | Ruby | any | haiti, evil-winrm | | tmux | any | background panes (`/run … &`, `/panes`, `/attach`) | | Docker | any | Mythic, MobSF (optional) |---## Quick CommandsLaunch `hackingtool` and type. There are only three kinds of input:| You type | It means | Example | |---|---|---| | `/…` | a command you run | `/search subdomain` | | `@…` | a thing you name | `@nmap`, `@tag:osint` | | anything else | plain English "what I want to do" | `crack a wifi handshake` |@ completes tool names — @tag: completes tags, / completes commands. ### Command reference| Command | Aliases | What it does | |---|---|---| | `/run [args] [&]` | `/open` | open a tool's menu; with a trailing `&` it runs in a background tmux pane instead (that's where `args` are used) | | `/search ` | | search tools by name, description or tag | | `/tags` | | list every tag with its tool count | | `/ai ` | `/recommend`, `/r` | recommend tools for a goal | | `/goal ` | | AI-plan an objective and run it step by step, with per-step confirmation | | `/find ` | `/discover` | find tools for a need — your catalog first, then GitHub (suggest-only) | | `/panes` | `/jobs` | list background panes | | `/attach` | | attach to the background session (`Ctrl-b` `d` to return) | | `/kill ` | | kill one background pane, or all of them | | `/config [key value]` | | view/change settings; `/config test` checks the AI connection, `/config github` checks the GitHub token | | `/skill` | | show the operator playbook | | `/update` · `/uninstall` | `/remove` | update system packages or hackingtool · remove hackingtool and its tools | | `/clear` | `/cls` | clear the screen | | `/back` | `/b` | leave the current tool and go back | | `/help` | `/?`, `/h` | quick reference card | | `/quit` | `/q`, `/exit` | exit (also `q`, `Ctrl-C`, `Ctrl-D`) | | `@` | | open a tool (case-insensitive, fuzzy fallback) | | `@tag:` | | list and k from the tools carrying that tag |Inside a category: `1–N` k a tool · `97` install everything not yet installed · `98` archived tools · `99` back. Inside a tool: `1` install · `2` run · `c` ask for the exact command for your goal · `98` project page · `99` back./help — the same card, in the app. On a non-interactive terminal (or without `prompt_toolkit`) hackingtool falls back to the classic numbered menu, where `/` or `s` searches, `t` filters by tag, `r` or `a` recommends, `?` helps and `q` quits. Force it with `hackingtool --classic`.> **New here?** [docs/HOW-TO-USE.md](docs/HOW-TO-USE.md) walks through each of these > start to finish with numbered steps.---## Features ### 🔎 `/find` — a tool for a need you don't have yetSearches the 215 curated tools first, then the GitHub search API, and ranks the results explainably. **Suggest-only** — it never clones, installs or runs anything — and it makes **zero model calls**./find crack a wpa handshakeIn your toolbox (vetted) • aircrack-ng (WiFi security suite) • Kismet (wireless detector / WIDS) • Reaver (WPS PIN attack) • WiGLE (wardriving map & API) • hashcat example hashes (WPA mode 22000)Found on GitHub — NOT vetted by uswifiphisher/wifiphisher 14713★ GPL-3.0 The Rogue Access Point Framework 14713★ · trusted author (ships in our catalog) · active · matches: security, wifi git clone https://github.com/wifiphisher/wifiphisher … Press `a` to keep a result: it is saved to `~/.hackingtool/found.yaml` as a "Discovered tools" entry — title, tags, description, link, and **no install or run command**, so a discovered entry can never execute anything. It shows up in your menu and in `/search` next launch.Out-of-scope asks (jamming, DoS, mass-targeting, malware) are refused **before any network call**, with an authorized alternative where one exists. Defensive/DFIR phrasing is never refused.Works anonymously at 10 GitHub searches/minute; a **no-scope, no-permission** token raises that to 30 — see [`/config github`](docs/HOW-TO-USE.md#7-add-a-github-token-for-find-config-github).### 🎯 `/goal` — plan an objective, run it one step at a time /goal find live subdomains of example.com hackingtool drafts a short plan of real commands (with the reason for each step and an install hint for tools you don't have), asks you to confirm you are **authorized** to test the target, then walks the steps: `[y]` run · `[s]` skip · `[e]` edit · `[q]` abort. Every step runs list-form — never through a shell — and each goal gets a timestamped workspace under `~/.hackingtool/goals/` holding `plan.json`, a UTC-stamped `run.log`, and the raw output of each step.The model is called **once**, for planning; tool output is never fed back to it. With no model configured, `/goal` degrades to tool recommendations for the same objective.### 🧠 Recommendations — say what you want in plain EnglishBare text (or `/ai`) maps intent to tools. The model may only return tags from the fixed taxonomy, and the catalog resolves tags → tools, so a tool can never be invented; with no model reachable a stdlib keyword matcher answers instead./ai — k one of the common tasks, or type the job in your own words. ### 🏷 Tags and search`/tags` prints every tag in use with its live tool count; `@tag:` opens the tools carrying it; `/search ` matches names, descriptions and tags. /tags — 63 tags in use, with the number of tools behind each. ### ▶ Background panes (tmux)Long scans shouldn't block your console. With tmux installed, `/run … &` opens a labeled window in one detached `hackingtool` session: /run nmap -sV -oA scan 10.0.0.5 & ▶ started 'nmap' in background — /attach to view ` /panes` lists them, `/attach` watches one (`Ctrl-b` `d` to come back), `/kill ` or `/kill all` stops them, and the status line under the prompt shows `▶ N running`. No tmux? It says so and opens the tool inline instead; disable it entirely with `/config background_runner off`.### ⚙ Settings and the AI layer`/config` opens a full-screen settings editor (`↑↓` move, `←→` change, `Enter` edit, `t` test the connection, `Esc` close); `/config ` sets one key from the prompt. Settings live in `~/.hackingtool/config.json`.The AI layer is **opt-in and bring-your-own-key**: an OpenAI-compatible endpoint when `ai_base_url` + an API key are set, else a local [Ollama](https://ollama.com), else nothing — every feature degrades to a deterministic offline behaviour instead of guessing. Your API key is written only to `~/.hackingtool/.env` (mode 600), never to `config.json`, and never printed back. `/config test` reports the real failure if a probe fails.### 📋 Headless engagementsThe same catalog drives a non-interactive orchestrator that normalizes tool output into one `findings.json`: bash hackingtool --engagement acme --targets example.com --pipeline recon hackingtool --engagement acme --report # deterministic Markdown report hackingtool --engagement acme --ai-summary # opt-in triage of the REAL findings hackingtool --engagement acme --ai-report # opt-in narrative draft (report.draft.md) Out-of-scope targets are flagged and logged before anything runs, and the AI passes only ever summarize findings that exist.---## Documentation... {card-default label="📦 工具信息" /} 🔗 项目地址:[https://github.com/Z4nzu/hackingtool](https://github.com/Z4nzu/hackingtool) ⭐ Star数:79344 💻 开发语言:Python 📝 项目描述:面向黑客的一体化黑客工具 {/card-default} 总的来说,**hackingtool**是一个功能比较实用的开源工具,适合日常工作和学习使用。如果你正在寻找一款相关工具,不妨下载试试。使用前建议仔细阅读项目文档。 -
hashcat - 渗透测试人员必备工具 推荐一个实用的开源工具——hashcat。项目由hashcat开发维护,GitHub上获得了 26717 个Star。简单来说,它是一款全球最快、最先进的密码恢复实用程序,对于站长和开发者来说是个不错的工具。 工具功能介绍 hashcat is a highly optimized password recovery platform for GPUs, CPUs, and large distributed systems. Features ###* World's fastest password cracker World's first and only in-kernel rule engine Free and open source, under the MIT license Multi-OS: Linux, Windows and macOS Multi-backend: CUDA, HIP, Metal and OpenCL Multi-device: several devices, and mixed device types, in one system Multi-hash: cracks large numbers of hashes at once Over 590 hash modes, each written with performance in mind 5 attack modes: wordlist, brute-force, PCFG, hybrid and association Assimilation bridge: add a hash mode in C, Python or Rust, without writing a kernel Brain: skips candidates an earlier session already tried Distributed cracking networks, using an overlay Reads candidates from a wordlist, from stdin, or from another program Markov chain keyspace ordering, so the likely candidates come first Automatic performance tuning per device Interactive pause and resume Named sessions, and restore after an interruption Built-in benchmark Integrated thermal watchdog Hex salt and hex charset, for hashes and character sets that are not text Encrypted plains: crack a hash for someone else without being able to read the password Keyboard layout mapping, for full disk encryption passwords typed on a non-US keyboard License ###hashcat is licensed under the MIT license. See docs/license.txt. Installation ###Download the latest release and unpack it where you want it. Use 7z x when unpacking from the command line, so the full file paths stay intact.Your platform may also provide packages. Building ###Building from source is optional. The release package is the same program, and a binary you build yourself will not crack any faster. Build it if you want a change of your own, a fix that is in master but not yet released, or a platform we do not ship a binary for.See BUILD.md for how.Tests:Build | BSD | Rust Usage and help ###Start with --help, also kept in the tree as docs/hashcat-help.md. One example hash per mode is in docs/hashcat-example-hashes.md.The wiki and the FAQ go further. The forum holds years of answered questions. If you still need help from a real human, come to Discord. Documentation ###The docs directory covers each feature. The ones people ask about most:* Plugin development guide, for adding a hash mode Assimilation bridge, and its Python and Rust quickstarts Generic attack mode and PCFG Brain, slow candidates, encrypted plains Keyboard layout mapping Compression libraries, for reading gzip, xz and zstd files Release notes for v7.1.0, and the full changelog Contributing ###Contributions are welcome. CONTRIBUTING.md has the code style, what a pull request needs, and how to test a change before you send it. Security ###SECURITY.md has how to report a vulnerability, and what counts as one. Happy Cracking! {card-default label="📦 工具信息" /} 🔗 项目地址:https://github.com/hashcat/hashcat ⭐ Star数:26717 💻 开发语言:C 📝 项目描述:全球最快、最先进的密码恢复实用程序 {/card-default} 总的来说,hashcat是一个功能比较实用的开源工具,适合日常工作和学习使用。如果你正在寻找一款相关工具,不妨下载试试。使用前建议仔细阅读项目文档。 -
黑客必备工具:pwntools 详细介绍 推荐一个实用的开源工具——**pwntools**。项目由Gallopsled开发维护,GitHub上获得了 **13676** 个Star。简单来说,它是一款CTF框架和漏洞利用开发库,对于站长和开发者来说是个不错的工具。 # # 工具功能介绍 Pwntools is a CTF framework and exploit development library. Written in Python, it is designed for rapid prototyping and development, and intended to make exploit writing as simple as possible. python from pwn import * context(arch = 'i386', os = 'linux')r = remote('exploitme.example.com', 31337) # EXPLOIT CODE GOES HERE r.send(asm(shellcraft.sh())) r.interactive() # Documentation Our documentation is available at [docs.pwntools.com](https://docs.pwntools.com/)A series of tutorials is also [available online](https://github.com/Gallopsled/pwntools-tutorial#readme)To get you started, we've provided some example solutions for past CTF challenges in our [write-ups repository](https://github.com/Gallopsled/pwntools-write-ups). # Installation Pwntools is best supported on 64-bit Ubuntu LTS releases (22.04 and 24.04). Most functionality should work on any Posix-like distribution (Debian, Arch, FreeBSD, OSX, etc.).Pwntools supports Python 3.10+ since version 5.0.0. Use Pwntools 4.x for older versions as well as Python 2.7. Most of the functionality of pwntools is self-contained and Python-only. You should be able to get running quickly with sh sudo apt-get update sudo apt-get install python3 python3-pip python3-dev git libssl-dev libffi-dev build-essential python3 -m pip install --upgrade pip python3 -m pip install --upgrade pwntools However, some of the features (assembling/disassembling foreign architectures) require non-Python dependencies. For more information, see the [complete installation instructions here](https://docs.pwntools.com/en/stable/install.html). # Contribution See [CONTRIBUTING.md](CONTRIBUTING.md) # Contact and Community If you have any questions not worthy of a [bug report](https://github.com/Gallopsled/pwntools/issues), join the Discord server at https://discord.gg/96VA2zvjCB {card-default label="📦 工具信息" /} 🔗 项目地址:[https://github.com/Gallopsled/pwntools](https://github.com/Gallopsled/pwntools) ⭐ Star数:13676 💻 开发语言:Python 📝 项目描述:CTF框架和漏洞利用开发库 {/card-default} 总的来说,**pwntools**是一个功能比较实用的开源工具,适合日常工作和学习使用。如果你正在寻找一款相关工具,不妨下载试试。使用前建议仔细阅读项目文档。 -
一站式掌握短视频编导必备技能 一站式掌握短视频编导必备技能 图片5 课程介绍 高质量短创作课,带你了解你为什么需要这门课,你的产品适合发在哪个平台?帮你赚钱的要花多少钱?如何让观众因为爱你而消费?不露脸的如何刺激购买欲?抖音电商生态四大运营产品,最后如何用场景撬动全网爆单。 学习地址 百度:https://pan.baidu.com/s/1XJSLBMUC2kjOdYcPV1DJ-g 天翼:https://cloud.189.cn/t/Bjy2ambQjYFr 阿里:https://www.aliyundrive.com/s/so6kXqUCn4j 下载后请先检查文件完整性,如有问题请在评论区反馈 -
新手开公司必备知识八合一全套 新手开公司必备知识八合一全套 图片1 课程目录 ├──1、小辉开公司必备知识 | ├──1--注册登记_【课程介绍】新手开公司要学习哪些知识.mp4 8.64M | ├──10--股权分配_股权激励如何做才能更有效.mp4 25.49M | ├──11--人力管理_创业公司招聘员工,怎么做才正规.mp4 22.57M | ├──12--人力管理_和员工这样签劳动合同才放心.mp4 27.26M | ├──13--人力管理_企业给员工上五险一金的注意事项.mp4 25.18M | ├──14--知识产权_商标:提前布局商标注册,把品牌牢牢保护住.mp4 24.24M | ├──15--知识产权_申请著作权原来有这么多好处.mp4 11.19M | ├──16--知识产权_专利:为成为高新技术企业做规划.mp4 16.75M | ├──17--融资要领_融资前要了解的几个基础知识.mp4 19.10M | ├──18--融资要领_手把手教你写出一份好的商业计划书.mp4 50.52M | ├──19--融资要领_融资过程中要避免踩这些坑.mp4 39.68M | ├──2--注册登记_注册公司前要了解的八大要素.mp4 46.89M | ├──20--风险意识_开公司一定要注意避免这些风险.mp4 21.82M | ├──21--风险意识_对外宣传之前先学下《广告法》.mp4 24.27M | ├──22--风险意识_跟人合作要养成留存证据的好习惯.mp4 11.97M | ├──23--公司变更_营业执照上这些元素都可以变更.mp4 9.25M | ├──24--公司变更_股份比例变更的两种方式详细比较.mp4 7.57M | ├──25--公司变更_公司不干了一定要及时注销或转让.mp4 5.40M | ├──3--注册登记_选择适合自己的企业类型-不同企业类型详细对比.mp4 17.77M | ├──4--注册登记_给自己的公司起一个好名字.mp4 17.99M | ├──5--财务合规_开公司一定要了解的三大税种.mp4 10.70M | ├──6--财务合规_学会看懂公司的三张财务报表.mp4 48.57M | ├──7--财务合规_用好小微企业的优惠政策.mp4 30.08M | ├──8--股权分配_股权到底包含哪些权利?.mp4 16.39M | └──9--股权分配_初创团队分配股权的几个注意事项.mp4 29.97M ├──2、小辉科学分钱:老板必修的薪酬与股权课 | ├──1--一、原理篇,理解科学分钱_【必看】课件怎么下载?.mp4 917.54kb | ├──10--二、方法篇,六种激励方法_孵化:既然留不住,何不换一种方式继续合作.mp4 273.14M | ├──11--三、案例篇,实战案例解析_四步搭建科学分钱激励系统,彻底解放老板.mp4 190.57M | ├──12--三、案例篇,实战案例解析_某一线互联网大厂的数字化薪酬及股权方案(附工具推荐).mp4 24.13M | ├──13--三、案例篇,实战案例解析_某连锁培训机构的薪酬及股权方案(附文档模板).mp4 30.25M | ├──14--三、案例篇,实战案例解析_某游戏公司的股权激励方案(附文档模板).mp4 39.80M | ├──2--一、原理篇,理解科学分钱_别再做救火队员了,老板有更重要的事要做.mp4 103.10M | ├──3--一、原理篇,理解科学分钱_你给员工发的工资和奖金的方式可能都是错的.mp4 237.61M | ├──4--一、原理篇,理解科学分钱_理解科学分钱的底层逻辑,掌握分钱的核心方法论.mp4 151.53M | ├──5--二、方法篇,六种激励方法_八大提成方法,点燃员工工作热情.mp4 459.51M | ├──6--二、方法篇,六种激励方法_一线互联网大厂,是这样给中后台员工算绩效的.mp4 465.23M | ├──7--二、方法篇,六种激励方法_用好晋升机制,为公司选拔优秀管理者.mp4 259.36M | ├──8--二、方法篇,六种激励方法_用好调岗机制,为公司储备复合型人才.mp4 200.11M | ├──9--二、方法篇,六种激励方法_用好股权激励,让管理层和老板一样全力以赴.mp4 374.73M | ├──XXX第X校区项目合作协议书.docx 34.10kb | ├──财务人员晋升标准(示例).doc 60.50kb | ├──岗位说明书合集参考(互联网公司).doc 3.36M | ├──岗位说明书合集参考(线下业务公司).doc 787.04kb | ├──公司岗位晋升标准表制订参考表.doc 133.00kb | ├──期权激励协议模板-合伙人.docx 18.40kb | ├──期权激励协议模板-员工.docx 18.09kb | ├──人事人员晋升标准(示例).doc 58.50kb | ├──生产人员晋升标准(示例).doc 69.00kb | ├──行政人员晋升标准(示例).doc 57.00kb | └──营销人员晋升标准(示例).doc 64.00kb ├──3、小辉注册商标 | ├──1--注册商标前,应该了解的基础知识.mp4 226.53M | ├──2--注册商标的流程,周期和费用.mp4 160.70M | ├──3--如何查询商标是否已经被别人注册?.mp4 41.15M | ├──4--手把手带你提交一次商标申请.mp4 39.36M | └──5--商标提交申请后还需要注意这些事项.mp4 121.24M ├──4、小辉自己动手注册公司 | ├──1--注册篇_0、自己动手注册公司.mp4 8.73M | ├──1-注册公司的流程和费用.pdf 561.86kb | ├──10--注册篇_9、公司印章怎么办理?.mp4 7.97M | ├──10-创业开公司要规避的法律风险 .pdf 1.71M | ├──11--银行篇_10-基本户和一般户的区别.mp4 2.66M | ├──12--银行篇_11-选哪家银行开户更合适.mp4 2.34M | ├──13--银行篇_12-银行开户的具体办理流程.mp4 3.58M | ├──14--银行篇_13-对公转账的操作注意事项.mp4 8.88M | ├──15--银行篇_14-银行回单及流水单的获取.mp4 2.68M | ├──16--税务篇_15-如何自己完成税务登记.mp4 24.68M | ├──17--税务篇_15-税务登记实操录屏(以北京为例).mp4 14.83M | ├──18--税务篇_16-如何自己完成报税.mp4 37.35M | ├──19--税务篇_17.mp4 18.47M | ├──2--注册篇_1-去哪里办理营业执照.mp4 17.28M | ├──2-选择适合自己的企业类型 .pdf 953.19kb | ├──20--税务篇_18-如何用会计软件自己记账.mp4 22.42M | ├──21--税务篇_19-学会看公司的三大财务报表.mp4 5.55M | ├──22--税务篇_20-三大报表之资产负债表.mp4 17.11M | ├──23--税务篇_21-三大报表之利润表.mp4 23.15M | ├──24--税务篇_22-三大报表之现金流量表.mp4 4.72M | ├──25--税务篇_23-税务合规的核心原则和两条红线.mp4 8.98M | ├──26--税务篇_24-公司的三大税种.mp4 18.41M | ├──27--社保篇_26-五险一金的用途.mp4 27.78M | ├──28--社保篇_27-五险一金的缴费比例.mp4 5.87M | ├──29--社保篇_28-怎么给自己和员工上社保.mp4 14.52M | ├──3--注册篇_2、该选择什么企业类型.mp4 24.49M | ├──3-给??的公司起?个好名字.pdf 10.39M | ├──30--社保篇_29-怎么给员工上公积金.mp4 6.95M | ├──31--社保篇_30-税前工资和税后工资的计算.mp4 13.28M | ├──32--商标篇_快速补齐商标基础认知.mp4 34.45M | ├──4--注册篇_3、怎么取到好记好传播的公司名.mp4 23.59M | ├──4-初创团队股权分配及股权激励.pdf 382.67kb | ├──5--注册篇_4、注册资本写多大合适?.mp4 9.67M | ├──6--注册篇_5、股份比例该如何确定.mp4 30.98M | ├──6-给员工上五险一金的注意事项.pdf 376.33kb | ├──7--注册篇_6、注册地址有什么要求.mp4 8.14M | ├──7-和员工签订劳动合同的注意事项.pdf 329.01kb | ├──8--注册篇_7、经营范围应该怎么填.mp4 9.97M | ├──8-知识产权,保护企业重要的无形资产 .pdf 733.15kb | ├──9--注册篇_8、法人、董事、监事、经理该填谁?.mp4 14.98M | ├──9-初创公司融资方式及核心要点.pdf 477.86kb | └──自己动手注册公司课件PPT.pdf 868.15kb ├──5、小辉教你开公司-创业融资必修课 | ├──[00001]01-你真的需要融资吗?.mp4 5.89M | ├──[00002]02-投资人想投什么样的企业.mp4 10.49M | ├──[00003]03-不同投资人有什么区别.mp4 9.57M | ├──[00004]04-第一次融资有哪些渠道.mp4 5.60M | ├──[00005]05-融资都有哪些阶段.mp4 8.49M | ├──[00006]06-投资人是怎么看BP的?.mp4 5.91M | ├──[00007]07-一份好BP要能引起投资人兴趣.mp4 3.31M | ├──[00008]08-BP的核心是讲清你的业务逻辑.mp4 2.67M | ├──[00009]09-一份BP应该包含哪些内容?.mp4 816.60kb | ├──[00010]10-手把手教你如何写一份BP.mp4 22.08M | ├──[00011]11-如何三分钟高效路演.mp4 23.11M | ├──[00012]12-不靠谱的投资人有哪些表现.mp4 4.60M | ├──[00013]13-投资人会偷点子吗?.mp4 5.04M | ├──[00014]14-如何跟进投资人意向.mp4 6.84M | ├──[00015]15-投资阶段要签订的3份协议.mp4 3.14M | ├──[00016]16-TS:确定投资意向的一些关键条款.mp4 3.00M | ├──[00017]17-拿到TS后,要不要立即签?.mp4 2.85M | ├──[00018]18-TS里有约束性的条款.mp4 20.47M | ├──[00019]19-融资相关法律风险.mp4 38.00M | └──[00020]20-案例:俏江南的对赌协议.mp4 11.77M ├──6、小辉教你开公司-老板必听财税课 | ├──01.老板必修财税课程.pdf 1.07M | ├──[00001]0-老板财税必修课2022-01-22171439.mp4 7.85M | ├──[00002]1-老板必须了解的三大税种2022-01-22171440.mp4 19.19M | ├──[00003]2-不可触碰的两条涉税红线2022-01-22171441.mp4 17.61M | ├──[00004]3-用好小微企业的优惠政策2022-01-22171442.mp4 23.14M | ├──[00005]4、学会看懂公司的三张财务报表2022-01-22171443.mp4 21.71M | ├──[00006]5-如何安全地公转私2022-02-05175814.mp4 20.48M | ├──[00007]6-老板怎么给自己发工资最划算2022-02-05175928.mp4 15.35M | ├──[00008]7-缺成本票怎么办?2022-02-13185325.mp4 21.58M | ├──[00009]8-居间费怎么入账?2022-02-13185441.mp4 11.29M | ├──[00010]9-建立老板的钱包公司2022-02-13185544.mp4 13.34M | ├──[00011]10-合理安排企业社保2022-02-13185635.mp4 12.05M | ├──[00012]公司买车的利弊分析2022-03-03141652.mp4 11.49M | ├──[00013]如何通过业务数字化系统,实现业务和财务融合?2022-03-03141649.mp4 22.68M | ├──[00014]巧用企业办公软件,轻松设计财务审批流程2022-03-03141650.mp4 24.71M | ├──[00015]如何招聘和面试_一个好财务2022-03-03141648.mp4 24.51M | ├──[00016]如何搭建股权架构,牢牢把控公司控制权?2022-03-03141651.mp4 20.89M | ├──[00017]各种企业类型的区别及用途对比2022-03-03141653.mp4 11.81M | └──[00018]金税三期和金税四期有何威力?2022-03-03141655.mp4 8.20M ├──7、小辉教你开公司-人事合规文件模板 | ├──01.2-3-劳动合同.docx 512.44kb | ├──02.1-5-录用通知函.doc 27.00kb | ├──02.人事合规文件模板批量下载.pdf 59.49kb | ├──03.2-7-岗位说明书.doc 2.51M | ├──04.3-2-转正通知书.doc 24.50kb | ├──05.2-4-保密协议.docx 501.90kb | ├──06.1-3-面试评价表.docx 17.23kb | ├──07.1-2-面试通知.doc 28.50kb | ├──08.2-6-员工手册.docx 48.22kb | ├──09.5-1-离职申请表.doc 34.00kb | ├──10.1-1-招聘流程图.docx 49.24kb | ├──11.5-4-离职证明.docx 20.25kb | ├──12.2-1-新员工入职流程&手续清单.docx 29.92kb | ├──13.5-2-离职交接单.docx 24.82kb | ├──14.3-1-转正申请书.docx | ├──15.2-5-竞业禁止协议.docx 501.76kb | ├──16.5-3-解除劳动关系协议书.docx 15.97kb | ├──17.4-1-兼职协议.docx 503.96kb | ├──18.4-2-实习协议.docx 513.74kb | ├──19.1-4-背景调查单.docx 13.78kb | ├──20.2-2-入职登记表&承诺书.doc 55.00kb | └──[00001]创业公司招聘怎么做才正规.mp4 55.27M ├──8、小辉教你开公司-自己动手ICP备案 | ├──[00001]ICP备案-注册流程及注册前准备2022-07-14121627.mp4 3.39M | ├──[00002]ICP备案-12022-07-14121622.mp4 8.72M | ├──[00003]ICP备案-2&32022-07-14121623.mp4 8.12M | ├──[00004]ICP备案-42022-07-14121624.mp4 3.32M | ├──[00005]ICP备案-52022-07-14121625.mp4 5.08M | └──[00006]ICP备案-62022-07-14121626.mp4 2.16M ├──【小辉】新手开公司必备知识资料包 | ├──1-1-招聘流程图.docx 49.46kb | ├──1-2-面试通知.doc 28.50kb | ├──1-3-面试评价表.docx 17.23kb | ├──1-4-背景调查单.docx 13.78kb | ├──1-5-录用通知函.doc 27.00kb | ├──1-6-面试未通过通知.doc 23.50kb | ├──2-1-新员工入职流程&手续清单.docx 30.17kb | ├──2-2-入职登记表&承诺书.doc 55.00kb | ├──2-3-劳动合同.docx 512.51kb | ├──2-4-保密协议.docx 501.62kb | ├──2-5-竞业禁止协议.docx 501.53kb | ├──2-6-员工手册.docx 48.22kb | ├──2-7-岗位说明书.doc 2.58M | ├──3-1-转正通知书.doc 24.50kb | ├──4-1-兼职协议.docx 503.78kb | ├──4-2-实习协议.docx 513.74kb | ├──5-1-离职申请表.doc 34.00kb | ├──5-2-离职交接单.docx 24.78kb | ├──5-3-解除劳动关系协议书.docx 15.98kb | ├──5-4-离职证明.docx 20.25kb | ├──创业融资PPT模板.pptx 58.04kb | ├──股东出资协议.doc 35.00kb | ├──股权代持协议.docx 19.85kb | ├──股权分配协议.docx 547.80kb | ├──股权转让协议.docx 14.10kb | ├──合伙人股权协议模板.docx 34.25kb | ├──回购、解除股权激励阶段文本.docx 8.83kb | ├──经营范围及行业资质参考.pdf 265.23kb | ├──期权授予阶段.docx 14.29kb | ├──期权授予阶段文本(股权激励协议).docx 21.11kb | ├──行权阶段文本.docx 8.80kb | ├──虚拟股权激励协议模板.docx 16.45kb | ├──一致行动协议.docx 26.34kb | └──真格基金一页纸TS(投资意向书).pdf 99.29kb └──【小辉】自己动手注册公司资料包 | ├──1-注册公司的流程和费用.pdf 561.86kb | ├──10-创业开公司要规避的法律风险 .pdf 1.71M | ├──2-选择适合自己的企业类型 .pdf 953.19kb | ├──3-给??的公司起?个好名字.pdf 10.39M | ├──4-初创团队股权分配及股权激励.pdf 382.67kb | ├──6-给员工上五险一金的注意事项.pdf 376.33kb | ├──7-和员工签订劳动合同的注意事项.pdf 329.01kb | ├──8-知识产权,保护企业重要的无形资产 .pdf 733.15kb | ├──9-初创公司融资方式及核心要点.pdf 477.86kb | └──自己动手注册公司课件PPT.pdf 868.15kb 学习地址 百度:https://pan.baidu.com/s/15azrfnDfFE4WJ8PnSRko3w?pwd=pxt6 天翼:https://cloud.189.cn/t/RvqeuyzyMnqe (访问码:yr9q) 迅雷:https://pan.xunlei.com/s/VO2u5cx-bm-T9zNL16iNcj-_A1?pwd=3ibn# 阿里:https://www.alipan.com/s/sxaM3RNqTU3 夸克:https://pan.quark.cn/s/f20c2ef6b75f 下载后请先检查文件完整性,如有问题请在评论区反馈 -
Webpack5入门与实战必备技能 Webpack5入门与实战必备技能 图片1 课程介绍 这门Webpack5入门与实战必备技能的课程将会介绍Webpack5基础知识和实际应用,帮助你掌握Webpack5打包工具的使用方法、优化策略以及常见问题解决方案。通过本课程的学习,你将能够在实践中熟练运用Webpack5来进行前端项目的开发和构建。 学习地址 百度:https://pan.baidu.com/s/1Le3eh-5ITFuDkgeMuiWj-Q?pwd=9q44 天翼:https://cloud.189.cn/web/share?code=ZRFnuiFJZBni(访问码:rf2z) 阿里:https://www.aliyundrive.com/s/JSsHnPNt1uP 夸克:https://pan.quark.cn/s/2a1992178a7d 下载后请先检查文件完整性,如有问题请在评论区反馈 -
新手开公司必备知识合规少踩坑 新手开公司必备知识合规少踩坑 图片1 课程介绍 这是一门为新手量身打造的公司合规入门课程,旨在帮助你少踩法律和制度坑。我们将深入浅出地讲解注册流程、税务要求、员工管理等关键知识。无论你计划成立小型企业还是初创公司,这个课程都能让你事半功倍。 学习地址 百度:https://pan.baidu.com/s/1ni-yGPdJtZOPGxD0Gu8ZfA?pwd=c0pw 天翼:https://cloud.189.cn/t/6fmUnejMNrY3(访问码:jpg1) 阿里:https://www.alipan.com/s/5yZvkMN1HTT 夸克:https://pan.quark.cn/s/757cb424b5c7 下载后请先检查文件完整性,如有问题请在评论区反馈 -
玩单机必备WeMod v6.3.11 软件介绍 WeMod是一款外国大佬专为单机游戏玩家制作的修改器,支持steam、GOG、微软商城里的大多数的游戏,在这个平台上汇集了海量的mod和修改器,而且现在已经拥有了中文的界面了。 软件进入软件后点击右上角向下的图标进入Settings(设置) 玩单机必备WeMod v6.3.11 图片2 进入默认是简体中文,但是界面还是英文,先点击English在点击简体中文,界面则变为中文。 玩单机必备WeMod v6.3.11 图片4 然后我们在左上角输入想要修改的游戏英文名称(不懂的可以去百度查) 玩单机必备WeMod v6.3.11 图片6 如果你玩的是学习版 要手动配置游戏路径 把游戏启动的exe文件拖入即可 玩单机必备WeMod v6.3.11 图片8 配置好路径后 在右上角启动游戏 按相对应的快捷键 即可开启单机游戏修改功能 玩单机必备WeMod v6.3.11 图片10 漫漫长夜飞天测试 玩单机必备WeMod v6.3.11 图片12 版本说明 此软件是免费使用,Pro(专业版)付费功能只是可以用手机APP远程操控修改器,无视即可。 软件官网 https://www.wemod.com/ https://api.wemod.com/client/channels/stable/releases/latest ⬇️ 下载地址 下载后请先检查文件完整性,如有问题请在评论区反馈 -
职场人士必备的实操进阶课 职场人士必备的实操进阶课 图片1 课程介绍 《职场人士必备的实操进阶课》旨在提升职场技能与竞争力。课程涵盖沟通技巧、时间管理、团队协作和问题解决等实用内容,帮助学员在职场中更有效地应对挑战,提升工作效率,增强职业发展潜力,助力职业生涯的进一步发展。 学习地址 百度:https://pan.baidu.com/s/1pYE7xgpuO4KgYYSolAG6vA?pwd=jdtc 天翼:https://cloud.189.cn/t/iyaqyqBFnEjq(访问码:z75o) 阿里:https://www.alipan.com/s/w91gzMwdaLU 夸克:https://pan.quark.cn/s/789f4baad275 下载后请先检查文件完整性,如有问题请在评论区反馈 -
Android学习项目入行必备 Android学习项目入行必备 图片2 教程介绍 课程主要针对刚刚进入行业或者即将进入行业的同学,帮助他们快速熟悉一些常用第三方库,满足入行的部分必备条件,为课堂真实记录,主要包括网络请求框架、图片加载框架、下拉刷新框架、语音识别、高度地图、人脸识别、环信聊天、阿里云直播、极光消息推送、支付宝支付、数据解析等必备知识基础。 学习地址 百度:https://pan.baidu.com/s/1op4Bqst_-ICwsvhvEjrqMg 天翼:https://cloud.189.cn/t/iAnANjYnUBRj 微云:https://share.weiyun.com/Tw5RyOnh 文件信息 文件大小: 11176235760 字节 MD5: 18BC64CA215D39C10DFB4A9A210A0477 SHA1: B8AB733D7CD2A9C0A6B6D8748DD0D36D070692B7 CRC32: 0C9DED8F 下载后请先检查文件完整性,如有问题请在评论区反馈 -
职场必备生存法则体制内经验课 职场必备生存法则体制内经验课 图片1 课程介绍 本课程旨在传授在体制内职场生存所需的关键技能和智慧。学员将学习沟通技巧、管理策略以及人际关系处理,帮助他们更好地适应职场环境,提升工作表现。这门课程致力于帮助职场人士更加游刃有余地应对各种挑战。 学习地址 百度:https://pan.baidu.com/s/1CCBVZutvwV9rJVM5WLUnsw?pwd=vvcj 天翼:https://cloud.189.cn/t/f6ZJZfvU7ry2(访问码:ym6y) 阿里:https://www.alipan.com/s/JWBfFCSaGt7 夸克:https://pan.quark.cn/s/2f11660cf0d4 下载后请先检查文件完整性,如有问题请在评论区反馈