This commit is contained in:
QiuChenly
2023-12-31 17:54:10 +08:00
commit 77ef7319a1
63 changed files with 4236 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@@ -0,0 +1,6 @@
.DS_Store
*.iml
.idea
.vscode
.ruby-lsp
IACPLHttpTransferClient

61
Adobe说明.md Normal file
View File

@@ -0,0 +1,61 @@
# Adobe 套件的使用方法
## 以LR CC为例
___
1. 卸载已经安装的accAdobeCreativeCloudCleanerTool Mac.dmg
https://www.123pan.com/s/X5tA-Eyuwh.html
2. 从adobe网站下载acc 5.9.0,然后断网安装它。
下载地址:
Intel:
https://trials.adobe.com/AdobeProducts/KCCC/CCD/5_9_0/osx10/ACCCx5_9_0_373.dmg
ARM:
https://trials.adobe.com/AdobeProducts/KCCC/CCD/5_9_0/macarm64/ACCCx5_9_0_373.dmg
3. **下载adobe packager**
<img width="1680" alt="1" src="https://github.com/LoveJessyChen/InjectLib/assets/48858531/bdbb5467-e345-4ac2-a4e4-23f0cc08a2ae">
3.1 从以下地址clone后下载这个adobe packager
https://github.com/Drovosek01/adobe-packager
下载方法是看下图先点击绿色的code再点击“Download ZIP”。
3.2 解压后直接双击运行ccdl.command
<img width="930" alt="2" src="https://github.com/LoveJessyChen/InjectLib/assets/48858531/6e5d0790-9452-427e-839e-625e74f654b7">
4. 下载并安装Lightroom CC软件
4.1 根据屏幕提示输入 v6 然后回车输入y然后回车。然后稍作等待 然后弹出adobe套件代码的列表之后。
<img width="593" alt="3" src="https://github.com/LoveJessyChen/InjectLib/assets/48858531/ddb76d74-4026-40db-b549-b172ebb2402a">
4.2 输入现在要下载的Lightroom CC 套件查询列表可以知道代码是LRCC
然后我们输入LRCC并回车选择版本输入6.5并回车;选择语言默认是中文 直接回车。
<img width="590" alt="4" src="https://github.com/LoveJessyChen/InjectLib/assets/48858531/21238761-f2ec-412d-b385-550053584013">
然后弹出窗口选择下载到哪个文件夹,我们下载到桌面。点击选取。
<img width="814" alt="5" src="https://github.com/LoveJessyChen/InjectLib/assets/48858531/d868252a-1970-4d02-9980-6440a1ada030">
然后双击这个install开头的安装包就可以安装了。
可选这里也可以把products文件提取出来
替换到脚本安装器来安装用这个方法就不限制acc或者anticc的版本https://www.123pan.com/s/X5tA-kyuwh.html
5. 然后运行脚本注入补丁。 即可完美享受,不受时间限制。

BIN
EmbyServer/Emby.Web.dll Normal file

Binary file not shown.

312
EmbyServer/embypremiere.js Normal file
View File

@@ -0,0 +1,312 @@
define([
"exports",
"./../modules/viewmanager/baseview.js",
"./../modules/emby-elements/emby-input/emby-input.js",
"./../modules/emby-elements/emby-button/emby-button.js",
"./../modules/emby-elements/emby-collapse/emby-collapse.js",
"./../modules/common/globalize.js",
"./../modules/loading/loading.js",
"./../modules/registrationservices/registrationservices.js",
"./../modules/common/dialogs/confirm.js",
"./../modules/emby-apiclient/connectionmanager.js",
], function (
_exports,
_baseview,
_embyInput,
_embyButton,
_embyCollapse,
_globalize,
_loading,
_registrationservices,
_confirm,
_connectionmanager
) {
function load(page) {
var apiClient;
_loading.default.show(),
(apiClient = ApiClient)
.getJSON(apiClient.getUrl("Plugins/SecurityInfo"))
.then(function (info) {
info.IsMBSupporter = true;
(page.querySelector(".txtSupporterKey").value =
info.SupporterKey || ""),
info.SupporterKey && !info.IsMBSupporter
? (page
.querySelector(".txtSupporterKey")
.classList.add("invalidEntry"),
page.querySelector(".notSupporter").classList.remove("hide"))
: (page
.querySelector(".txtSupporterKey")
.classList.remove("invalidEntry"),
page.querySelector(".notSupporter").classList.add("hide")),
info.IsMBSupporter
? (page
.querySelector(".supporterContainer")
.classList.add("hide"),
(function (key) {
key = "key=" + key + "&serverId=" + ApiClient.serverId();
return new Promise((resolve) =>
resolve({
deviceStatus: 0,
planType: "超级会员",
subscriptions: [
{
autoRenew: true,
store: "秋城落叶",
feature: "all",
planType: "超级会员",
expDate: "且会员资格永远不会失效",
},
],
})
);
})(info.SupporterKey).then(function (statusInfo) {
if (statusInfo) {
var statusLine,
indicator = page.querySelector(
".status-indicator .listItemIcon"
),
extendedPlans = page.querySelector(".extended-plans");
switch (
((extendedPlans.innerHTML = _globalize.default.translate(
"MessagePremiereExtendedPlans",
'<a is="emby-linkbutton" class="button-link" href="https://emby.media/premiere-ext.html" target="_blank">',
"</a>"
)),
statusInfo.deviceStatus)
) {
case 2:
(statusLine = _globalize.default.translate(
"MessagePremiereStatusOver",
statusInfo.planType
)),
indicator.classList.add("expiredBackground"),
indicator.classList.remove("nearExpiredBackground"),
(indicator.innerHTML = "&#xE000;"),
indicator.classList.add("autortl"),
extendedPlans.classList.remove("hide");
break;
case 1:
(statusLine = _globalize.default.translate(
"MessagePremiereStatusClose",
statusInfo.planType
)),
indicator.classList.remove("expiredBackground"),
indicator.classList.add("nearExpiredBackground"),
(indicator.innerHTML = "&#xE000;"),
indicator.classList.add("autortl"),
extendedPlans.classList.remove("hide");
break;
default:
(statusLine = _globalize.default.translate(
"MessagePremiereStatusGood",
statusInfo.planType
)),
indicator.classList.remove("expiredBackground"),
indicator.classList.remove("nearExpiredBackground"),
(indicator.innerHTML = "&#xE5CA;"),
indicator.classList.remove("autortl"),
extendedPlans.classList.add("hide");
}
page.querySelector(".premiere-status").innerHTML =
statusLine;
var subsElement = page.querySelector(".premiere-subs");
statusInfo.subscriptions &&
0 < statusInfo.subscriptions.length
? ((page.querySelector(
".premiere-subs-content"
).innerHTML =
((subs = statusInfo.subscriptions),
(key = info.SupporterKey),
subs.map(function (item) {
var itemHtml = "",
makeLink =
item.autoRenew && "Stripe" === item.store,
tagName = makeLink ? "button" : "div";
return (
itemHtml +
(("button" == tagName
? '<button type="button"'
: "<div") +
' class="listItem listItem-button listItem-border' +
(makeLink ? " lnkSubscription" : "") +
'" data-feature="' +
item.feature +
'" data-key="' +
key +
'">') +
'<i class="listItemIcon md-icon autortl">&#xe1b2;</i>' +
'<div class="listItemBody two-line">' +
'<div class="listItemBodyText">' +
_globalize.default.translate(
"ListItemPremiereSub",
item.planType,
item.expDate,
item.store
) +
"</div>" +
'<div class="listItemBodyText listItemBodyText-secondary">' +
_globalize.default.translate(
"Stripe" === item.store
? item.autoRenew
? "LabelClickToCancel"
: "LabelAlreadyCancelled"
: "LabelCancelInfo",
item.store
) +
"</div>" +
"</div>" +
("</" + tagName + ">")
);
}))),
(subs = page.querySelector(".lnkSubscription")) &&
subs.addEventListener("click", cancelSub),
subsElement.classList.remove("hide"))
: subsElement.classList.add("hide"),
page
.querySelector(".isSupporter")
.classList.remove("hide");
}
var subs, key;
}))
: (page
.querySelector(".supporterContainer")
.classList.remove("hide"),
page.querySelector(".isSupporter").classList.add("hide")),
_loading.default.hide();
});
}
function cancelSub(e) {
console.log("Cancel ");
var feature = this.getAttribute("data-feature"),
key = this.getAttribute("data-key");
(0, _confirm.default)({
title: _globalize.default.translate("HeaderCancelSub"),
text: _globalize.default.translate("MessageConfirmSubCancel"),
confirmText: _globalize.default.translate("ButtonCancelSub"),
cancelText: _globalize.default.translate("ButtonDontCancelSub"),
primary: "cancel",
}).then(function () {
console.log("after confirm"),
fetch("http://127.0.0.1:3000/admin/service/stripe/requestSubCancel", {
method: "POST",
body: "key=" + key + "&feature=" + feature,
headers: { "Content-Type": "application/x-www-form-urlencoded" },
}).then(
function (response) {
alertText({
text: _globalize.default.translate("MessageSubCancelReqSent"),
title: _globalize.default.translate("HeaderConfirmation"),
});
},
function (response) {
alertText({
text: _globalize.default.translate(
"MessageSubCancelError",
"cancel@emby.media"
),
});
}
);
});
}
function retrieveSupporterKey(e) {
_loading.default.show();
var email = this.querySelector(".txtEmail").value,
url =
"http://127.0.0.1:3000/admin/service/supporter/retrievekey?email=" +
email;
return (
console.log(url),
fetch(url, { method: "POST" })
.then(function (response) {
return response.json();
})
.then(function (result) {
_loading.default.hide(),
result.Success
? require(["toast"], function (toast) {
toast(
_globalize.default
.translate("MessageKeyEmailedTo")
.replace("{0}", email)
);
})
: require(["toast"], function (toast) {
toast(result.ErrorMessage);
}),
console.log(result);
}),
e.preventDefault(),
!1
);
}
function alertText(options) {
require(["alert"], function (alert) {
alert(options);
});
}
function updateSupporterKey(e) {
_loading.default.show();
var form = this,
key = form.querySelector(".txtSupporterKey").value;
return (
ApiClient.updatePluginSecurityInfo({ SupporterKey: key }).then(
function () {
_loading.default.hide(),
alertText(
key
? {
text: _globalize.default.translate("MessageKeyUpdated"),
title: _globalize.default.translate("HeaderConfirmation"),
}
: {
text: _globalize.default.translate("MessageKeyRemoved"),
title: _globalize.default.translate("HeaderConfirmation"),
}
),
_connectionmanager.default.resetRegistrationInfo(ApiClient),
load(form.closest(".page"));
},
function () {
_loading.default.hide(),
_connectionmanager.default.resetRegistrationInfo(ApiClient),
load(form.closest(".page"));
}
),
e.preventDefault(),
!1
);
}
function onSupporterLinkClick(e) {
_registrationservices.default.showPremiereInfo(),
e.preventDefault(),
e.stopPropagation();
}
function View(view, params) {
_baseview.default.apply(this, arguments),
view
.querySelector(".supporterKeyForm")
.addEventListener("submit", updateSupporterKey),
view
.querySelector(".lostKeyForm")
.addEventListener("submit", retrieveSupporterKey),
(view.querySelector(".benefits").innerHTML = _globalize.default.translate(
"HeaderSupporterBenefit",
'<a is="emby-linkbutton" class="lnkPremiere button-link" href="https://emby.media/premiere" target="_blank">',
"</a>"
)),
view
.querySelector(".lnkPremiere")
.addEventListener("click", onSupporterLinkClick);
}
Object.defineProperty(_exports, "__esModule", { value: !0 }),
(_exports.default = void 0),
require(["listViewStyle"]),
Object.assign(View.prototype, _baseview.default.prototype),
(View.prototype.onResume = function (options) {
_baseview.default.prototype.onResume.apply(this, arguments),
load(this.view);
}),
(_exports.default = View);
});

13
EmbyServer/readme.md Normal file
View File

@@ -0,0 +1,13 @@
# 本教程旨在破解Emby Server for macOS
## 支持版本: 4.7.14.0
下载地址: https://github.com/MediaBrowser/Emby.Releases/releases/download/4.7.14.0/embyserver-osx-x64-4.7.14.0.zip
## 使用方法
Emby.Web.dll 替换到 /Applications/EmbyServer.app/Contents/MacOS/Emby.Web.dll
embypremiere.js 替换到 /Applications/EmbyServer.app/Contents/Resources/dashboard-ui/embypremiere/embypremiere.js
## 最后
我再说一遍网上那些破解Emby Linux/Windows Server版本要替换四五个文件的人都是傻狗。
不就是修改个b前端js和改一下.Net资源文件的事情被你们搞这么复杂老子一直以为这东西很难都懒得弄没想到就他妈这么点b大点难度。一群饭桶

674
LICENSE Normal file
View File

@@ -0,0 +1,674 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
macOS上App代码注入工具库
Copyright (C) 2023 QiuChenly
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
InjectLib Copyright (C) 2023 秋城落叶
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.

View File

@@ -0,0 +1,28 @@
# 小白专用
## 声明
本脚本非QiuChenly维护如果按照下面的步骤使用出现问题请老老实实阅读项目主页的Readme-使用一栏.
## 用法
若你未拉取仓库.复制下面👇命令并粘贴到终端中,回车,输入密码,回车.
```bash
git clone https://github.com/QiuChenlyOpenSource/InjectLib.git && cd ./InjectLib/Surge一键脚本 && chmod +x surge.sh && sudo bash surge.sh
```
若你已拉取仓库.只需要在`Surge一键脚本`目录下执行下面👇命令
```bash
chmod +x surge.sh && sudo bash surge.sh
```
> 已知问题:与 iCloud 相关均不可用.例如: 在线安装模块,Ponte等.
关于平台间模块同步(不用iCloud方案): https://lanyundev.com/posts/c0448cdf
若不想执行代码,只想用成品:
https://github.com/LanYunDev/InjectLib_bak/releases
小小的Blog: https://lanyundev.com/posts/c659a0ce

112
Surge一键脚本/surge.sh Executable file
View File

@@ -0,0 +1,112 @@
#!/bin/bash
# 错误处理函数
handle_error() {
echo ""
echo "⚠️ 脚本发生错误!,请检查错误,5秒后退出..."
osascript -e 'display notification "自动处理脚本" with title "⚠️脚本发生错误❌~" sound name "Glass"'
sleep 5
exit 1
}
# 定义信号处理函数,用于响应 Ctrl+C
function handle_ctrl_c {
echo ""
echo "接收到 Ctrl+C5秒后退出..."
if [[ ${upload_pace_pid} ]]; then
kill "${upload_pace_pid}" > /dev/null 2>&1
fi
sleep 5
exit 1
}
# 设置信号处理程序,捕捉 SIGINT 信号Ctrl+C
trap handle_ctrl_c SIGINT
# 设置错误处理函数
trap handle_error ERR
function Wipes_Data {
user=$(whoami)
{
sudo rm -rf "/Applications/Surge" || true
sudo rm -rf "/tmp/Surge-*.zip" || true
sudo rm -rf "/Users/${user}/Library/Logs/Surge/" || true
sudo rm -rf "/Users/${user}/Library/Preferences/com.nssurge.surge-mac.plist" || true
sudo rm -rf "/Users/${user}/Library/Application Support/com.nssurge.surge-mac" || true
sudo rm -rf "/Users/${user}/Library/HTTPStorages/com.nssurge.surge-mac" || true
sudo /bin/launchctl unload /Library/LaunchDaemons/com.nssurge.surge-mac.helper.plist || true
sudo /usr/bin/killall -u root -9 com.nssurge.surge-mac.helper || true
sudo /bin/rm "/Library/LaunchDaemons/com.nssurge.surge-mac.helper.plist" || true
sudo /bin/rm "/Library/PrivilegedHelperTools/com.nssurge.surge-mac.helper" || true
sudo rm -rf "/Users/${user}/Library/Preferences/com.nssurge.surge-mac.plist" || true
sudo rm -rf "/Users/${user}/Library/Application\ Support/com.nssurge.surge-mac" || true
} > /dev/null 2>&1
}
# 检查是否为root用户非root用户可能无法访问某些文件
if [[ $EUID -ne 0 ]]; then
echo '⚠️ 请使用root权限运行此脚本!'
echo '⚠️ 若你担心安全问题,请审阅本脚本!'
exit 1
fi
# 获取脚本文件的绝对路径和目录
SCRIPT_PATH=$(readlink -f "$0")
SCRIPT_DIR=$(dirname "${SCRIPT_PATH}")
cd "${SCRIPT_DIR}" || exit 1
echo "⚙️ 是否需要清除Surge相关内容?"
echo "⚙️ 全新安装Surge,建议输入y并回车,只进行破解,直接回车即可."
read -r flag
if [[ $flag == y ]]; then
echo "⚙️ 若你安装过Surge,请确保Surge卸载干净,建议用App Cleaner & Uninstaller工具"
echo '⚙️ 若你有配置文件等信息,请备份到其他目录,都确认无误后输入y,开始纯净安装!'
read -r flag
if [[ $flag != y ]]; then
exit 1
fi
Wipes_Data
download_link=$(grep '| Surge 5 ' < "../readme.md" | grep 'https://dl.nssurge.com' | awk -F '[()]' '{print $2}')
if [[ ! "${download_link}" ]]; then
download_link="https://github.com/LanYunDev/InjectLib_bak/releases/download/surge/Surge-5.4.1-2471-6362273df75c0e6bc35e4b1734c37c52.zip"
fi
version=$(echo "${download_link}" | awk -F '-' '{print $2 "-" $3}')
read -r -t 5 -p "⚙️ 是否(y/n)已安装 Surge-${version} ? 5秒后自动安装." flag || true
echo ""
if [[ $flag != n ]]; then
if ! curl -k -A "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36" -o "/tmp/Surge-${version}.zip" "${download_link}"; then
echo "❌ 下载失败,尝试采用仓库链接🔗"
download_link="https://github.com/LanYunDev/InjectLib_bak/releases/download/surge/Surge-5.4.1-2475-4d9e12213c92f411a549d3e113ebfd18.zip"
version=$(echo "${download_link}" | awk -F '-' '{print $2 "-" $3}')
curl -k -L -A "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36" -o "/tmp/Surge-${version}.zip" "${download_link}" || (echo "Surge-${version}安装失败☹️,网络原因,请检查网络." && exit 1)
fi
unzip -qq -o "/tmp/Surge-${version}.zip" -d "/Applications" || (echo "解压失败☹️,压缩包可能已损坏.请重新下载." && exit 1)
fi
fi
if [[ ! -e "../tool/insert_dylib" ]]; then
echo "⚠️ 确保上级tool目录中存在insert_dylib" && exit 1
fi
if [[ ! -e "../tool/libInjectLib.dylib" ]]; then
echo "⚠️ 确保上级tool目录中存在libInjectLib.dylib" && exit 1
fi
chmod +x "../tool/insert_dylib"
sudo cp -f "../tool/libInjectLib.dylib" "/Applications/Surge.app/Contents/Frameworks/libInjectLib.dylib" || exit 1
sudo cp -f "/Applications/Surge.app/Contents/Frameworks/Bugsnag.framework/Versions/A/Bugsnag" "/Applications/Surge.app/Contents/Frameworks/Bugsnag.framework/Versions/A/Bugsnag_backup" || exit 1
sudo ../tool/insert_dylib "/Applications/Surge.app/Contents/Frameworks/libInjectLib.dylib" "/Applications/Surge.app/Contents/Frameworks/Bugsnag.framework/Versions/A/Bugsnag_backup" "/Applications/Surge.app/Contents/Frameworks/Bugsnag.framework/Versions/A/Bugsnag" || exit 1
cd "${SCRIPT_DIR}/.." || exit 1
sudo bash ./tool/surgeAgent.sh
# sudo codesign -f -s - --all-architectures --deep /Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper || true
# sudo codesign -f -s - --all-architectures --deep /Applications/Surge.app || true
echo "✅ 完成"
open /Applications/Surge.app

View File

@@ -0,0 +1,11 @@
[Script]
Paddle1 = type=http-request,pattern=^https://v3.paddleapi.com/3.2/license/verify,requires-body=1,max-size=0,debug=1,script-path=paddle_act.js
Paddle2 = type=http-request,pattern=^https://v3.paddleapi.com/3.2/license/activate,requires-body=1,max-size=0,debug=1,script-path=paddle_act.js
elpass = type=http-request,pattern=^https://api.elpass.app/device/management,requires-body=1,max-size=0,debug=1,script-path=paddle_act.js
elpass1 = type=http-request,pattern=^https://api.elpass.app/device/init,requires-body=1,max-size=0,debug=1,script-path=paddle_act.js
elpass2 = type=http-request,pattern=^https://api.elpass.app/device/activate-with-key,requires-body=1,max-size=0,debug=1,script-path=paddle_act.js
MacUpdater = type=http-request,pattern=https://.*?.execute-api.*.amazonaws.com/default/meddle-activate,requires-body=1,max-size=0,debug=1,script-path=paddle_act.js
MacUpdaterDeac = type=http-request,pattern=https://.*?.execute-api.*.amazonaws.com/default/meddle-deactivate,requires-body=1,max-size=0,debug=1,script-path=paddle_act.js
MacUpdaterAuthorization = type=http-request,pattern=https://.*?.execute-api.*.amazonaws.com/default/meddle-authenticate,requires-body=1,max-size=0,debug=1,script-path=paddle_act.js

View File

@@ -0,0 +1,122 @@
let url = $request.url;
let paddleActivate = () => {
if (url !== "https://v3.paddleapi.com/3.2/license/activate") return;
let body = $request.body.split("&");
let product_id = "";
for (let k of body) {
if (k.indexOf("product_id") != -1) {
product_id = k.split("=")[1];
}
}
$done({
response: {
body: JSON.stringify({
success: true,
response: {
product_id: product_id,
activation_id: "QiuChenly",
type: "personal",
expires: 1,
expiry_date: 1999999999999,
},
}),
},
});
};
let paddleVerify = () => {
if (url !== "https://v3.paddleapi.com/3.2/license/verify") return;
let body = JSON.stringify({
success: true,
response: {
type: "personal",
expires: 1,
expiry_date: 1999999999999,
},
});
$done({
response: {
body,
},
});
};
let elpassManagement = () => {
if (url !== "https://api.elpass.app/device/management") return;
let body = JSON.stringify({
email: "QiuChenly@52pojie.com",
subscriptionBillingPeriod: null,
subscriptionEndDate: 99999502400,
subscriptionSource: null,
autoRenew: true,
trial: false,
});
$done({
response: {
body,
},
});
};
let elpassInit = () => {
if (url !== "https://api.elpass.app/device/init") return;
let body = JSON.stringify({
code: 0,
subscriptionBillingPeriod: null,
subscriptionEndDate: 99999502400, //5100年授权
subscriptionSource: null,
autoRenew: true,
trial: false,
});
$done({
response: {
body,
},
});
};
let elpassActiveWithKey = () => {
if (url !== "https://api.elpass.app/device/activate-with-key") return;
let body = JSON.stringify({
code: 0,
license: "没有密钥 这个注入伪造信息是没有用的",
});
$done({
response: {
body,
},
});
};
paddleActivate();
paddleVerify();
//这里可以用通用有效授权信息伪造下发即可伪造出真实激活状态
elpassManagement();
elpassInit();
elpassActiveWithKey();
let MacUpdater = () => {
if (
url.indexOf(
"execute-api.eu-central-1.amazonaws.com/default/meddle-activate"
) === -1 &&
url.indexOf(
"execute-api.eu-central-1.amazonaws.com/default/meddle-deactivate"
) === -1 &&
url.indexOf(
"execute-api.eu-central-1.amazonaws.com/default/meddle-authenticate"
) === -1
)
return;
let body = "success";
$done({
response: {
body,
},
});
};
MacUpdater();

11
Utils.rb Normal file
View File

@@ -0,0 +1,11 @@
# frozen_string_literal: true
# 检查文件是否存在
# 参数:
# file_path 文件路径
# 返回值:
# 是否存在
def file_exist?(file_path)
File.exist?(file_path)
end

456
config.json Normal file
View File

@@ -0,0 +1,456 @@
{
"project": "InjectShell",
"Author": "QiuChenly",
"Version": 1.3,
"Description": {
"desc": "这是一个用于解释说明json对象用途的说明文档。basePublicConfig里面的同名配置如果在AppList里面配置了相同的Key则优先使用AppList里面的值。",
"bridgeFile": "app路径和注入文件路径之间的中间路径有些app只能注入到/Contents所以加了这个。",
"packageName": "app包名用来确认App是否存在。",
"injectFile": "注入文件的相对app路径的路径",
"supportVersion": "支持的版本号,用于大版本号 如果不提供任意版本号则直接无条件注入",
"supportSubVersion": "更精确的子版本号用于某些app大版本号不变但是经常变小版本号的陋习",
"extraShell": "额外的执行shell比如PD18需要执行一些额外的shell支持自定义。",
"needCopyToAppDir": "有些app需要复制到app目录中才能在SIP打开的时候运行 这个属性可以控制库文件被复制到Framework",
"deepSignApp": "自动签名整个App",
"disableLibraryValidate": "关闭库验证 暂时只为pd启用",
"entitlements": "用于跳过部分权限 在启用SIP的macOS上 如ARM64",
"noSignTarget": "默认注入后会对目标文件进行签名,我们有时候不需要这个行为。",
"noDeep": "--deep 控制"
},
"basePublicConfig": {
"bridgeFile": "/Contents/Frameworks/"
},
"AppList": [
{
"packageName": "com.nssurge.surge-mac",
"appBaseLocate": "/Applications/Surge.app",
"bridgeFile": "/Contents/Frameworks/",
"injectFile": "Bugsnag.framework/Versions/A/Bugsnag",
"needCopyToAppDir": true,
"extraShell": "surgeAgent.sh"
},
{
"packageName": ["com.edrawsoft.edrawmax", "com.edrawsoft.mindmaster"],
"injectFile": "QtXml.framework/Versions/5/QtXml",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "pl.maketheweb.cleanshotx",
"injectFile": "InsiderKit.framework/Versions/A/InsiderKit",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.setapp.DesktopClient",
"injectFile": "Sparkle.framework/Versions/B/Sparkle",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true
},
{
"packageName": "com.moneywiz.personalfinance",
"injectFile": "Charts.framework/Versions/A/Charts",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true
},
{
"packageName": "com.parallels.desktop.console",
"bridgeFile": "/Contents/MacOS/Parallels Service.app/Contents/MacOS/",
"injectFile": "prl_disp_service",
"extraShell": "pd.sh",
"noDeep": true,
"supportSubVersion": [
"53606",
"53488",
"53614",
"53621",
"54570",
"54729",
"54734"
]
},
{
"packageName": "com.surteesstudios.Bartender",
"needCopyToAppDir": true,
"noDeep": true,
"deepSignApp": true,
"injectFile": "Sparkle.framework/Versions/A/Sparkle",
"extraShell": "bartender.sh"
},
{
"packageName": "com.crystalidea.macsfancontrol",
"injectFile": "QtMacExtras.framework/Versions/5/QtMacExtras",
"needCopyToAppDir": true,
"extraShell": "macfans.sh"
},
{
"packageName": "com.nonstrict.Bezel-direct",
"injectFile": "Sparkle.framework/Versions/B/Sparkle",
"needCopyToAppDir": true,
"noDeep": true,
"deepSignApp": true
},
{
"packageName": "com.tinyapp.TablePlus",
"injectFile": "SSH.framework/Versions/A/SSH",
"needCopyToAppDir": true,
"noDeep": true,
"deepSignApp": true,
"extraShell": "tablePlus.sh"
},
{
"packageName": "app.elpass.macos",
"appBaseLocate": "/Applications/Elpass.app",
"injectFile": "MMMarkdown.framework/Versions/A/MMMarkdown",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "ws.stash.app.mac",
"appBaseLocate": "/Applications/Stash.app",
"injectFile": "Sparkle.framework/Versions/B/Sparkle",
"needCopyToAppDir": true,
"deepSignApp": true,
"extraShell": "stash.sh"
},
{
"packageName": "com.firecore.infuse",
"injectFile": "GZIP.framework/Versions/A/GZIP",
"needCopyToAppDir": true,
"noDeep": true,
"deepSignApp": true,
"entitlements": "signkeep.xml"
},
{
"packageName": "com.coderforart.MWeb3",
"injectFile": "Sparkle.framework/Versions/B/Sparkle"
},
{
"packageName": "com.nektony.App-Cleaner-SIII",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "NektonyFallManager.framework/Versions/A/NektonyFallManager"
},
{
"packageName": "li.zihua.medis2",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"injectFile": "HexFiend.framework/Versions/A/HexFiend"
},
{
"packageName": "com.zzd.Xnip",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"injectFile": "DKDrawKit.framework/Versions/A/DKDrawKit"
},
{
"packageName": "com.techsmith.camtasia2023",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "TSCAccount.framework/Versions/A/TSCAccount",
"extraShell": "camtasia.sh"
},
{
"packageName": "com.macpaw.CleanMyMac4",
"injectFile": "Announcements.framework/Versions/A/Announcements",
"needCopyToAppDir": true,
"deepSignApp": true,
"extraShell": "cmmxAgent.sh"
},
{
"packageName": "com.macpaw.CleanMyMac4.Menu",
"appBaseLocate": "/Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app",
"injectFile": "CMMNotifications.framework/Versions/A/CMMNotifications",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.artdesktop.bestzip2",
"injectFile": "JSONModel.framework/Versions/A/JSONModel"
},
{
"packageName": ["com.navicat.NavicatPremium"],
"injectFile": "EE.framework/Versions/A/EE",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true
},
{
"packageName": "com.adobe.Photoshop",
"appBaseLocate": "/Applications/Adobe Photoshop (Beta)/Adobe Photoshop (Beta).app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM"
},
{
"packageName": "com.adobe.lightroomCC",
"appBaseLocate": "/Applications/Adobe Lightroom CC/Adobe Lightroom.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Adobe Lightroom",
"entitlements": "signkeep.xml",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true
},
{
"packageName": "com.adobe.Photoshop",
"appBaseLocate": "/Applications/Adobe Photoshop 2024/Adobe Photoshop 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.illustrator",
"appBaseLocate": "/Applications/Adobe Illustrator 2024/Adobe Illustrator.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.ame.application.24",
"appBaseLocate": "/Applications/Adobe Media Encoder 2024/Adobe Media Encoder 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.AfterEffects",
"appBaseLocate": "/Applications/Adobe After Effects 2024/Adobe After Effects 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.apple.FinalCutTrial",
"injectFile": "TLKit.framework/Versions/A/TLKit",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.Adobe-Animate-2024.application",
"appBaseLocate": "/Applications/Adobe Animate 2024/Adobe Animate 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.Audition",
"appBaseLocate": "/Applications/Adobe Audition 2024/Adobe Audition 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.PremierePro.23",
"appBaseLocate": "/Applications/Adobe Premiere Pro 2024/Adobe Premiere Pro 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.Acrobat.Pro",
"appBaseLocate": "/Applications/Adobe Acrobat DC/Adobe Acrobat.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.InCopy",
"appBaseLocate": "/Applications/Adobe InCopy 2024/Adobe InCopy 2024.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "PublicLib.dylib",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.InDesign",
"appBaseLocate": "/Applications/Adobe InDesign 2024/Adobe InDesign 2024.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "PublicLib.dylib",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.LightroomClassicCC7",
"appBaseLocate": "/Applications/Adobe Lightroom Classic/Adobe Lightroom Classic.app",
"injectFile": "AgUI.framework/Versions/A/AgUI",
"needCopyToAppDir": true,
"noDeep": true,
"entitlements": "signkeep.xml"
},
{
"packageName": [
"com.microsoft.Excel",
"com.microsoft.Powerpoint",
"com.microsoft.Word"
],
"needCopyToAppDir": true,
"injectFile": "ADAL4.framework/Versions/A/ADAL4"
},
{
"packageName": ["com.microsoft.Outlook"],
"needCopyToAppDir": true,
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Microsoft Outlook",
"noSignTarget": true
},
{
"packageName": "com.sublimetext.4",
"needCopyToAppDir": true,
"deepSignApp": true,
"entitlements": "signkeep.xml",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "sublime_text"
},
{
"packageName": "com.sublimemerge",
"needCopyToAppDir": true,
"deepSignApp": true,
"entitlements": "signkeep.xml",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "sublime_merge"
},
{
"packageName": "whbalzac.Huajian",
"needCopyToAppDir": true,
"deepSignApp": true,
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Live Wallpaper"
},
{
"packageName": "abnerworks.Typora",
"needCopyToAppDir": true,
"deepSignApp": true,
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Typora"
},
{
"packageName": "com.mac.utility.screen.recorder",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "OmniRecorder",
"extraShell": "recorder.sh"
},
{
"packageName": "com.mac.utility.media.player",
"injectFile": "XADMaster.framework/Versions/A/XADMaster",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.bandisoft.mac.bandizip",
"needCopyToAppDir": true,
"deepSignApp": true,
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Bandizip"
},
{
"packageName": "com.bandisoft.mac.bandizip365",
"needCopyToAppDir": true,
"deepSignApp": true,
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Bandizip365"
},
{
"packageName": "com.proxyman.NSProxy",
"injectFile": "Moya.framework/Versions/A/Moya",
"needCopyToAppDir": true,
"deepSignApp": true,
"extraShell": "proxyManAgent.sh"
},
{
"packageName": [
"com.seriflabs.affinityphoto2",
"com.seriflabs.affinitydesigner2",
"com.seriflabs.affinitypublisher2"
],
"injectFile": "liblibzlib.dylib",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.panic.transmit.mas",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "ZipZap.framework/Versions/A/ZipZap"
},
{
"packageName": "com.ulyssesapp.mac",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"injectFile": "KissXML.framework/Versions/A/KissXML"
},
{
"packageName": "app.mindmac.macos",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"injectFile": "Paddle.framework/Versions/A/Paddle"
},
{
"packageName": "tonyapp.devutils",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "DiffMatchPatch.framework/Versions/A/DiffMatchPatch"
},
{
"packageName": "app.mp3tag.Mp3tag",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Sparkle.framework/Versions/B/Sparkle"
},
{
"packageName": "com.villow.wgt",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "BFPageControl.framework/Versions/A/BFPageControl"
},
{
"packageName": "com.wiheads.paste",
"bridgeFile": "/Contents/MacOS/",
"extraShell": "paste.sh",
"injectFile": "Paste",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "cn.better365.ishot",
"injectFile": "PTHotKey.framework/Versions/A/PTHotKey",
"needCopyToAppDir": true,
"deepSignApp": true,
"extraShell": "ishot.sh"
},
{
"packageName": "com.drbuho.BuhoCleaner",
"injectFile": "Sparkle.framework/Versions/A/Sparkle",
"bridgeFile": "/Contents/Frameworks/DesktopApplication.framework/Versions/A/Frameworks/",
"needCopyToAppDir": true,
"deepSignApp": true,
"entitlements": "signkeep.xml",
"extraShell": "buhoCleaner.sh"
},
{
"packageName": "org.qcad",
"injectFile": "libqcadcustomwidgets.dylib",
"bridgeFile": "/Contents/PlugIns/designer/",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true
},
{
"packageName": "com.crossutility.quantumult-x",
"injectFile": "Quantumult X",
"bridgeFile": "/Contents/MacOS/",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.corecode.MacUpdater",
"injectFile": "Sparkle.framework/Versions/B/Sparkle",
"needCopyToAppDir": true,
"deepSignApp": true
}
]
}

BIN
imgs/decodeSSL.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

BIN
imgs/image-1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 KiB

BIN
imgs/image-10.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

BIN
imgs/image-2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 KiB

BIN
imgs/image-3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB

BIN
imgs/image-4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
imgs/image-5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
imgs/image-6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 KiB

BIN
imgs/image-7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 593 KiB

BIN
imgs/image-8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

BIN
imgs/image-9.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
imgs/image.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 628 KiB

BIN
imgs/img.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

BIN
imgs/img3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

BIN
imgs/img_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

BIN
imgs/img_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
imgs/js配置.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 813 KiB

BIN
imgs/keyrings.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

201
main.rb Normal file
View File

@@ -0,0 +1,201 @@
require 'json'
require 'fileutils'
require './Utils'
require 'pathname'
require 'shellwords'
def readPrototypeKey(file, keyName)
link = Shellwords.escape(file)
%x{defaults read #{link} #{keyName}}.chomp
end
def parseAppInfo(appBaseLocate, appInfoFile)
appInfo = {}
appInfo['appBaseLocate'] = "#{appBaseLocate}"
appInfo['CFBundleIdentifier'] = readPrototypeKey appInfoFile, 'CFBundleIdentifier'
appInfo['CFBundleVersion'] = readPrototypeKey appInfoFile, 'CFBundleVersion'
appInfo['CFBundleShortVersionString'] = readPrototypeKey appInfoFile, 'CFBundleShortVersionString'
appInfo['CFBundleName'] = readPrototypeKey appInfoFile, 'CFBundleExecutable'
appInfo
end
def scan_apps
applist = []
baseDir = '/Applications'
lst = Dir.glob("#{baseDir}/*")
lst.each do |app|
appInfoFile = "#{app}/Contents/Info.plist"
next unless File.exist?(appInfoFile)
begin
applist.push parseAppInfo app, appInfoFile
# puts "检查本地App: #{appInfoFile}"
rescue StandardError
next
end
end
applist
end
def checkCompatible(compatibleVersionCode, compatibleVersionSubCode, appVersionCode, appSubVersionCode)
return true if compatibleVersionCode.nil? && compatibleVersionSubCode.nil?
compatibleVersionCode&.each do |code|
return true if appVersionCode == code
end
compatibleVersionSubCode&.each do |code|
return true if appSubVersionCode == code
end
false
end
def main
ret = %x{csrutil status}.chomp
# System Integrity Protection status: disabled.
if ret.include?('status: enabled')
# puts "给老子把你那个b SIP关了先是不是关SIP犯法\n要求里写了要先关SIP能不能认真看看我写的说明\n如果你看了还没关说明你确实是SB\n如果你没看说明那你更SB。\nWhateverU ARE SB。"
# return
end
config = File.read('config.json')
config = JSON.parse config
basePublicConfig = config['basePublicConfig']
appList = config['AppList']
procVersion = config['Version']
puts "====\t自动注入开始执行\t====\n"
puts "====\tVersion(版本号): #{procVersion}\t====\n"
puts "====\tAutomatic Inject Script Checking... ====\n"
puts "====\tDesign By QiuChenly(github.com/qiuchenly)"
puts "注入时请根据提示输入'y' 或者按下回车键跳过这一项。\n"
puts "When i find useful options, pls follow my prompts enter 'y' or press enter key to jump that item.\n"
install_apps = scan_apps
# prepare resolve package lst
appLst = []
appList.each do |app|
packageName = app['packageName']
if packageName.is_a?(Array)
packageName.each { |name|
tmp = app.dup
tmp['packageName'] = name
appLst.push tmp
}
else
appLst.push app
end
end
appLst.each { |app|
packageName = app['packageName']
appBaseLocate = app['appBaseLocate']
bridgeFile = app['bridgeFile']
injectFile = app['injectFile']
supportVersion = app['supportVersion']
supportSubVersion = app['supportSubVersion']
extraShell = app['extraShell']
needCopy2AppDir = app['needCopyToAppDir']
deepSignApp = app['deepSignApp']
disableLibraryValidate = app['disableLibraryValidate']
entitlements = app['entitlements']
noSignTarget = app['noSignTarget']
noDeep = app ['noDeep']
localApp = install_apps.select { |_app| _app['CFBundleIdentifier'] == packageName }
if localApp.empty? && (appBaseLocate.nil? || !Dir.exist?(appBaseLocate))
next
end
if localApp.empty?
puts "[🔔] 此App包不是常见类型结构请注意当前App注入的路径是 #{appBaseLocate}"
puts "[🔔] This App Folder is not common struct,pls attention now inject into the app path is #{appBaseLocate}"
# puts "读取的是 #{appBaseLocate + "/Contents/Info.plist"}"
localApp.push(parseAppInfo appBaseLocate, appBaseLocate + '/Contents/Info.plist')
end
localApp = localApp[0]
if appBaseLocate.nil?
appBaseLocate = localApp['appBaseLocate']
end
bridgeFile = basePublicConfig['bridgeFile'] if bridgeFile.nil?
unless checkCompatible(supportVersion, supportSubVersion, localApp['CFBundleShortVersionString'], localApp['CFBundleVersion'])
puts "[😅] [#{localApp['CFBundleName']}] - [#{localApp['CFBundleShortVersionString']}] - [#{localApp['CFBundleIdentifier']}]不是受支持的版本,跳过注入😋。\n"
next
end
puts "[🤔] [#{localApp['CFBundleName']}] - [#{localApp['CFBundleShortVersionString']}] - [#{localApp['CFBundleIdentifier']}]是受支持的版本是否需要注入y/n(默认n)\n"
action = gets.chomp
next if action != 'y'
puts "开始注入App: #{packageName}"
dest = appBaseLocate + bridgeFile + injectFile
backup = dest + '_backup'
if File.exist? backup
puts "备份的原始文件已经存在,需要直接用这个文件注入吗y/n(默认y)\n"
puts "Find Previous Target File Backup, Are u use it injecty/n(default is y)\n"
action = gets.chomp
# action = 'y'
if action == 'n'
FileUtils.remove(backup)
FileUtils.copy(dest, backup)
else
end
else
FileUtils.copy(dest, backup)
end
current = Pathname.new(File.dirname(__FILE__)).realpath
current = Shellwords.escape(current)
# set shell +x permission
sh = "chmod +x #{current}/tool/insert_dylib"
# puts sh
system sh
backup = Shellwords.escape(backup)
dest = Shellwords.escape(dest)
sh = "sudo #{current}/tool/insert_dylib #{current}/tool/libInjectLib.dylib #{backup} #{dest}"
unless needCopy2AppDir.nil?
system "sudo cp #{current}/tool/libInjectLib.dylib #{Shellwords.escape(appBaseLocate + bridgeFile)}libInjectLib.dylib"
sh = "sudo #{current}/tool/insert_dylib #{Shellwords.escape(appBaseLocate + bridgeFile)}libInjectLib.dylib #{backup} #{dest}"
end
# puts sh
system sh
signPrefix = 'codesign -f -s - --timestamp=none --all-architectures'
if noDeep.nil?
puts 'Need Deep Sign.'
signPrefix = "#{signPrefix} --deep"
end
unless entitlements.nil?
signPrefix = "#{signPrefix} --entitlements #{current}/tool/#{entitlements}"
end
# 签名目标文件 如果加了--deep 会导致签名整个app
if noSignTarget.nil?
puts '开始签名...'
system "#{signPrefix} #{dest}"
end
unless disableLibraryValidate.nil?
sh = 'sudo defaults write /Library/Preferences/com.apple.security.libraryvalidation.plist DisableLibraryValidation -bool true'
system sh
end
unless extraShell.nil?
system "sudo sh #{current}/tool/" + extraShell
end
if deepSignApp
system "#{signPrefix} #{Shellwords.escape(appBaseLocate)}"
end
puts 'App处理完成。'
}
end
main

577
readme.md Normal file
View File

@@ -0,0 +1,577 @@
<p align="center" style="font-size: 31px">macOS 代码注入</p>
<p align="center">秋城落叶<br/>Creative & Design</p>
<p align="center">For My Mac</p>
<!-- TOC -->
- [聯絡](#聯絡)
- [這就是原神的力量!點擊圖片進入新世界](#這就是原神的力量點擊圖片進入新世界)
- [警告](#警告)
- [使用](#使用)
- [【用前必读】重要提示](#用前必读重要提示)
- [【用前必读】可能会遇到的问题](#用前必读可能会遇到的问题)
- [操作系统要求 \& 代码编译环境要求](#操作系统要求--代码编译环境要求)
- [支持的 macOS App](#支持的-macos-app)
- [支持的 iOS App](#支持的-ios-app)
- [不再支持的 App](#不再支持的-app)
- [特别说明](#特别说明)
- [Surge 激活必读](#surge-激活必读)
- [Surge Mac 助手程序Helper异常处理方式](#surge-mac-助手程序helper异常处理方式)
- [Adobe 全家桶激活必读](#adobe-全家桶激活必读)
- [~~MacUpdater 激活必读~~ 会有屏蔽设备的风险,不建议使用](#macupdater-激活必读-会有屏蔽设备的风险不建议使用)
- [Emby Server 激活必读](#emby-server-激活必读)
- [Sublime 激活必读](#sublime-激活必读)
- [PD 19 激活必读](#pd-19-激活必读)
- [Typora 激活必读](#typora-激活必读)
- [利用 Surge 的 MitM 拦截功能支持激活的 macOS App](#利用-surge-的-mitm-拦截功能支持激活的-macos-app)
- [目的](#目的)
- [骂人小作文](#骂人小作文)
- [~~免责声明~~wo ze ni ma de b](#免责声明wo-ze-ni-ma-de-b)
- [~~停更~~](#停更)
# 聯絡
关注我的频道,进群获取最新的注入库文件。
QiuChenly的Mac逆向课程准备开课啦想学习这方面的知识成为大佬吗加入群组报名培训每天十分钟坚持一个月你感谢曾经认真学习的自己
關注我的Telegram頻道和群組,分享最新資訊和技術。
<br>
頻道: https://t.me/qiuchenlymac
别让欲望击穿你の意志
<br>
群組: https://t.me/+f3BWmkjVCzQwYzM1 <br>
<br>
關注我的Twitter:
https://twitter.com/QiuChenly
<br>
關注QiuChenly喵關注落葉的Twitter喵。謝謝大家喵。
點點關注不迷路!
#### 這就是原神的力量!點擊圖片進入新世界
[![启动](https://i2.hdslb.com/bfs/archive/966fe6fe2c1329919bb8972d69fb8c09d17047cc.jpg@100w_100h_1c.png)](https://ipfs.lanyundev.com/ipfs/bafybeigpm6ocaba2wlgi7zgio3lu7hzqxgrviiicuwc5xbddlo77leabcy/6e51fccaeb5343bda366d42e68c3c705.MP4)
# 警告
一定要关闭SIP因为我使用的注入方式依赖于关闭SIP。
但是有例外上方表格中App的SIP状态为"✅"则可以不用关闭SIP即可使用,并且注入下载文件夹不需要保留,注入后可以删除。
本库中几乎所有的App都建议你在打开SIP状态下使用不建议用户关闭SIP除非你很懂这块。
# 使用
1. 下载整个仓库并解压,双击运行"原神_启动.command"并输入密码,按照提示操作。
<br>
小白不知道点哪里下载整个仓库?[点我下载](https://github.com/QiuChenlyOpenSource/InjectLib/archive/refs/heads/main.zip)
2. 要是你不差这几分钟时间从头到尾先认真读一遍这个readme可能你看完之后会解决你的部分疑惑。
# 【用前必读】重要提示
<details>
<summary>点击展开</summary>
1. 本脚本会自动扫描本地安装的App你只需要在想注入的App后面输入y即可。
2. Adobe App如果不想让官方ACC乱拉屎可以用这个仓库下载v6版本的离线安装包: https://github.com/Drovosek01/adobe-packager,
然后配合AntiCC之类的组件运行Adobe产品。
3. 激活之后由于App还需要依赖我的注入代码所以不要移动注入文件夹或者删除注入文件夹有的人用完就把注入文件夹删了第二天就到处说破解不稳定第二次就崩溃。
这种人你动动你那个🐷脑子想想为什么第一次能用删了我的注入文件夹第二次打开就崩溃?
4. 脚本如果没有权限执行注入操作终端报错类似于下面这样:<br>
![示例](imgs/image-2.png)
那是因为SIP的安全策略限制不允许运行不符合安全策略的代码执行所以你需要先打开:<br>
设置 - 隐私与安全性 - 开发者工具:<br>
![开发者工具](imgs/image.png)<br>
并打开终端执行代码策略:<br>
![策略](imgs/image-1.png)<br>
最后重新执行即可正常注入。这是MacOS的安全策略麻烦你动动你那个b手点一下好吗
</details>
# 【用前必读】可能会遇到的问题
<details>
<summary>点击展开</summary>
1. 遇到"xxx想要访问你的机密信息"<br>
![img.png](./imgs/keyrings.png)<br>
原因:<br>
补丁对某些App会自动签名以保证能在SIP打开的情况下使用.但是保存在钥匙串里的信息只能被官方签名的app读取
自己签名App后会造成丢失权限<br><br>
解决方案:<br>
輸入你的密碼,並點擊始終允許即可。<br><br>
2. 我不会用终端<br>
解决方案:<br>
使用我提供的"原神_启动.command"来进行注入。软件界面简单,只需要按提示操作即可完成注入工作,无需手動打開終端。<br><br>
3. 需要移到垃圾篓
应该是App没有打开过就直接执行注入了。这可能会导致检查不通过不过影响不是很大。建议App在注入前先运行一次。
![移到垃圾桶](./imgs/image-3.png)
这是正常的因为SIP打开的情况下如果修改了App会导致校验不通过你只需要手动从Finder中右击点开一次就好了:<br>
![打开](./imgs/image-4.png)
![进一步打开](./imgs/image-5.png)
此时就能正常打开。如果还出现问题,请检查自己的注入操作有没有问题。<br><br>
4. Operation not permitted<br>
如下所示。<br>
![simple](./imgs/image-7.png)<br>
```
开始注入App: com.nssurge.surge-mac
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/fileutils.rb:1387:in `initialize': Operation not permitted @ rb_sysopen - /Applications/Surge.app/Contents/Frameworks/Bugsnag.framework/Versions/A/Bugsnag_backup (Errno::EPERM)
```
这是很多人会遇到的问题。<br>Operation not permitted就是终端app需要修改app但是没权限 所以会崩溃。<br>
原因:终端没有给操作权限<br>
解决办法:<br>
1. 打开设置<br>
2. 隐私和安全性<br>
3. 开发者工具 和 App管理<br>
4. 两个地方都要打开终端开关,重启终端即可正常执行。<br>
![terminal](./imgs/image-6.png)<br>
![还有这个](./imgs/image-8.png)
</details>
# 操作系统要求 & 代码编译环境要求
<details>
<summary>点击展开</summary>
- 最低运行 macOS High Sierra 10.13
- 编译SDK macOS 14.0
- 目标部署平台 macOS 10.13
- CMakeLists 环境变量
- set(CMAKE_OSX_DEPLOYMENT_TARGET "10.13")
- 检查二进制文件的最低macOS版本兼容性
- ```find . -name "*.*" | xargs otool -l | grep -E "(minos|sdk)"```
</details>
***
# 支持的 macOS App
<details>
<summary>点击展开</summary>
- ARM64 & Intel: ✅ 表示可用, ❌ 表示不可用<br>
- SIP: ✅ 表示可以在打开SIP的机器上使用, ❌ 表示只能在关闭SIP使用<br>
| App | 版本 | ARM64 | Intel | SIP | 特殊要求 |
|:------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----:|:-----:|-----|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| MWEB Pro | 通杀 | ✅ | ✅ | ✅ | |
| Navicat Premium | 通杀 | ✅ | ✅ | ✅ | 需要从Mac AppStore 下载 |
| Navicat 16 ForOracle | 通杀 | ❌ | ✅ | ✅ | 需要从Mac AppStore 下载 我下不到ARM64的版本 |
| Sublime Text | [通杀](https://download.sublimetext.com/sublime_text_build_4154_mac.zip) | ✅ | ✅ | ✅ | 授权信息下面找。 |
| Elpass | [通杀](https://elpass.app/macos/Elpass-1.5.6-490.zip) | ✅ | ✅ | ✅ | 无法使用云同步 签名后的app通病 无解 搭配Surge脚本可以做到5138年授权 https://elpass.app/macos/appcast-beta.xml |
| CleanMyMac X | 通杀 | ✅ | ✅ | ✅ | com.macpaw.CleanMyMac4.Menu 单独也要注入 Helper每个版本不一样还是需要单独处理 暂时不弄了 不要下大陆特供版 更新地址: https://s3-us-west-2.amazonaws.com/updateinfo.devmate.com/com.macpaw.CleanMyMac4/beta/updates.xml |
| Stash | [2.5.4](https://mac-release-static.stash.ws/Stash-latest.zip) | ✅ | ✅ | ✅ | 完美破解但是总体体验较差 不如surge https://mac-release.stash.ws/appcast.xml |
| Paste | 4.1.2 | ✅ | ✅ | ✅ | 全新算法,杀! |
| App Cleaner & Uninstaller | 8.2.2 | ✅ | ✅ | ✅ | 因为签名会导致提示盗版,有空在再弄。 |
| ProxyMan | [通杀](https://download.proxyman.io/49100/Proxyman_4.10.0.dmg) | ✅ | ✅ | ✅ | 更新地址: https://proxyman.io/osx/version.xml |
| BuhoCleaner | [通杀](https://www.drbuho.com/buho-public-files/buhocleaner/buhocleaner197150.dmg) | ✅ | ✅ | ✅ | 更新地址:https://www.drbuho.com/buho-public-files/buhocleaner/appcast.xml |
| Macs Fan Control | [通杀](https://crystalidea.com/downloads/macsfancontrol.zip) | ✅ | ✅ | ✅ | |
| TablePlus | [通杀](https://tableplus.com/release/osx/tableplus_latest) | ✅ | ✅ | ✅ | 老子第一次喷App: 傻逼App 做的跟shit一样 我伪造的授权信息在内存数据结构被篡改成不知道哪来的ObjectC对象引起崩溃 浪费老子时间 真的垃圾App 作者能不能几把优化一下?? 就这破App 老子弄到凌晨三点 真的狗都不用 而且连个汉化都没有 格局Down Down了 |
| Transmit 5 | 5.9.2 | ✅ | ✅ | ✅ | 需要从App Store下载 |
| DevUtils | [1.17.0](https://devutils.com/archives/DevUtils-1.17.0.dmg) | ✅ | ✅ | ✅ | 功能可用 但是激活状态我懒得改了 作者写的这个App代码质量之烂令人无语 不想多说什么了 |
| MP3Tag | [1.8.6 (86)](https://updates.mp3tag.app/Mp3tag-1.8.6.zip) | ❌ | ✅ | ✅ | 序列号随便输入 全部激活 |
| Widgetter | [通杀](https://apps.apple.com/cn/app/widgetter-%E5%B0%8F%E5%B7%A5%E5%85%B7-%E6%A1%8C%E9%9D%A2%E5%A3%81%E7%BA%B8-%E4%B8%BB%E9%A2%98-%E5%B1%8F%E4%BF%9D/id1553223588?mt=12) | ✅ | ✅ | ✅ | MAS下载 激活全部功能 |
| Bartender 5 | [5.0.36-通杀](https://macbartender.com/B2/updates/5-0-31/Bartender%205.zip) | ✅ | ✅ | ✅ | 更新地址 https://www.macbartender.com/B2/updates/AppcastB5.xml |
| QCAD-Intel | [3.28.2](https://www.qcad.org/archives/qcad/qcad-3.28.2-trial-macos-10.14-13.dmg) | ❌ | ✅ | ✅ | ARM懒得弄 |
| Bandizip 365 | 通杀 | ✅ | ✅ | ✅ | 订阅版 |
| Bandizip | 7.28 | ✅ | ✅ | ✅ | 买断版 |
| 花见壁纸 | [通杀](https://apps.apple.com/cn/app/%E8%8A%B1%E8%A6%8B-4k%E5%8A%A8%E6%80%81%E5%A3%81%E7%BA%B8%E5%BC%95%E6%93%8E/id1456235760?mt=12) | ✅ | ✅ | ✅ | 注入时App名称选择Live Wallpaper |
| Typora | [通杀](https://download.typora.io/mac/Typora.dmg) | ✅ | ✅ | ✅ | 目前激活后第二次打开会崩溃 等修复 |
| Medis | [3100](https://api.getmedis.com/medis-latest.zip) | ✅ | ✅ | ✅ | 仅支持3100 |
| Xnip | [通殺](https://apps.apple.com/cn/app/xnip-%E6%88%AA%E5%9B%BE-%E6%A0%87%E6%B3%A8/id1221250572?mt=12) | ✅ | ✅ | ✅ | 通殺不要問為什麼 |
| Camtasia 2023 | [2023.3.4(124306)通杀](https://www.techsmith.com/camtasia.html) | ✅ | ✅ | ✅ | 通殺不要問為什麼 |
| Final Cut Pro Trial | [(10.6.10)通杀](https://secure-appldnld.apple.com/Final_Cut_Pro_X/042-60959-20231004-B5BFDED9-9530-49C9-97EB-B7B617BC5026/FinalCutProTrial.dmg) | ✅ | ✅ | ✅ | 通殺不要問為什麼 |
| MacUpdater | [激活码通杀](https://www.corecode.io/downloads/macupdater_latest.dmg) | ✅ | ✅ | ✅ | 通殺序列号下面找 |
| Surge 5 | [5.4.4-2545](https://dl.nssurge.com/mac/v5/Surge-5.4.4-2545-27d3d3382af66cca53ccfff698bcc9dd.zip) | ✅ | ✅ | ✅ | 老有聪明人自己没搞好出问题来问我该怎么办 不是我的问题我怎么知道怎么办?你不问开发者你问我?傻逼吧你?|
| CleanShot | [4.6.2](https://updates.getcleanshot.com/v3/CleanShot-X-4.6.2.dmg) | ✅ | ✅ | ✅ | 不通杀 |
| com.edrawsoft.edrawmax/com.edrawsoft.mindmaster | 自己去官网下 | ✅ | ✅ | ✅ | 不通杀 |
| UlyssesMac | [MAS版本](https://apps.apple.com/us/app/ulysses-%E5%86%99%E4%BD%9C-%E7%AC%94%E8%AE%B0-%E6%97%A5%E8%AE%B0-%E5%8D%9A%E5%AE%A2/id1225570693?l=zh-Hans-CN) | ✅ | ✅ | ✅ | 苹果应用商店版本,后续版本通杀 |
| MindMac | [官网版本](https://github.com/MindMacApp/MindMac/releases/download/1.8.7/MindMac_1.8.7.dmg)| ✅ | ✅ | ✅ | 官网版本,后续版本通杀 |
| Adobe 全家桶 | 版本 | ARM64 | Intel | 特殊说明 全家桶全部支持打开SIP下使用 |
|:-------------------------|:-------------|:-----:|:-----:|:------------------------------|
| Adobe PhotoShop | 通杀 | ✅ | ✅ | PS:Intel上的神经滤镜已经完美可用 ARM的暂时不行 |
| Adobe Acrobat Pro | 23.006.20360 | ✅ | ✅ | |
| Adobe Illustrator | 28.1.0 | ✅ | ❌ | ARM64没有测试过 X86测试过 |
| Adobe Lightroom | 7.0 | ✅ | ✅ | 注入后先点试用 然后过期后可以正常使用 |
| Adobe Lightroom Classic | 13.0.1 | ✅ | ✅ | 注入后先点试用 然后过期后可以正常使用 |
| Adobe InCopy 2024 | 19.0.0.151 | ✅ | ❌ | 在M1 Mac Mini 中测试通过 |
| Adobe InDesign 2024 | 19.0.0.151 | ✅ | ❌ | 在M1 Mac Mini 中测试通过 |
| Adobe Premiere Pro 2024 | 24.0.0 | ✅ | ✅ | 在M1 Mac Mini 中测试通过 |
| Adobe After Effects 2024 | 24.0.0 | ✅ | ✅ | 在M1 Mac Mini 中测试通过 |
| Adobe Animate 2024 | 24.0 | ✅ | ✅ | 在M1 Mac Mini 中测试通过 |
| Adobe Audition 2024 | 24.0.0.46 | ✅ | ✅ | 在M1 Mac Mini 中测试通过 |
| Adobe Media Encoder 2024 | 24.0 | ✅ | ✅ | 在M1 Mac Mini 中测试通过 |
</details>
# 支持的 iOS App
<details>
<summary>点击展开</summary>
| App | 版本 | 特殊说明 |
|-------|--------|-------------------------------------------------------|
| Surge | v5.8.0 | 还没破解,战损iPhone 7坏了去修了修好之后学习怎么破解iOS 学iOS破解第一天 -200 RMB |
</details>
# 不再支持的 App
<details>
<summary>点击展开</summary>
| App | 最后支持 | ARM64 | Intel | SIP | 停更说明 |
|------------------------------------------------|-----------------------------------------------------------------------------------------------------|:-----:|:-----:|:---:|--------------------------------------------|
| Microsoft Office Word/PowerPoint/Excel/Outlook | 需要从Mac AppStore下载 16.80 | ✅ | ✅ | ✅ | 365订阅版 我为大家贡献的太多,我有点累了。 | | | | | |
| Parallels Desktop | [19.1.0](https://download.parallels.com/desktop/v19/19.1.0-54729/ParallelsDesktop-19.1.0-54729.dmg) | ✅ | ✅ | ✅ | 谁会想到会有人以全家除他以外(含亲妈)全部暴毙的代价冒名顶替别人给我发恐吓律师函呢? |
| Affinity Photo 2/Designer 2/Publisher 2 全家桶 | MAS 2.1.1 | ✅ | ✅ | ✅ | 我有点累了。 |
| iShot | MAS 通杀 | ✅ | ✅ | ✅ | 我有点累了。 |
| Infuse Pro | MAS 通杀 | ✅ | ✅ | ✅ | 我有点累了。 |
| 解优2 | MAS 通杀 | ✅ | ✅ | ✅ | 我有点累了。 |
| Omi录屏专家 | MAS 通杀 | ✅ | ✅ | ✅ | 我有点累了。 |
| OmniPlayer | MAS 通杀 | ✅ | ✅ | ✅ | 我有点累了。 |
</details>
# 特别说明
<details>
<summary>点击展开</summary>
## Surge 激活必读
<details>
<summary>点击展开</summary>
纯小白另可参见:
1. [Wolffya編寫的小白参考說明](https://github.com/wolffya/InjectLib/tree/secondary)
2. [LanYunDev編寫的Surge一鍵激活腳本](./Surge一键脚本)
Surge 更新地址: https://www.nssurge.com/mac/v5/appcast-signed-beta.xml <br>
laoliugood morning. not good also fine, follow u.
Surge盗版用户请支持正版。<br>
我对开发者致敬说个早上好也被某些无脑用户过度解读是嘲讽开发者是吧?那我直接说操你妈是不是你全家骨灰都被我扬了?<br>
Surge是非常好的一个产品我发我的补丁 你支持你自己的正版who care u?<br>
有的人不要两头带节奏 在正版群对开发者那边截图破解版嘲笑还打着为开发者着想的幌子拱火 另一边下破解版在别的电脑上用
这种人你的米线很低我就不评价了 但是你的🐎肯定必死。<br>
对开发者团队我无意冒犯,早上好。<br>
一切完美。感谢QQ 302***3398 用户无偿提供授权信息。<br>
目前错误已全部修正。<br>
之前安装过旧版本的用户进Surge后先卸载一遍Helper帮助程序才能正常安装帮助程序挂上代理。点击安装帮助程序没反应的不是破解的问题能不能先去点一下卸载帮助程序呢<br>
如果你因为某些软件缺陷第一反应质疑是破解的问题那么我只能说“SB 你是对的 都是破解的问题 你说的太对了 完全不是你的问题
完全不是原始软件的问题”因为跟蠢货争论只会浪费我的生命。<br>
### Surge Mac 助手程序Helper异常处理方式
如果 Surge Mac 助手程序Helper异常会导致无法设置系统代理和无法开启增强模式。使用 CleanMyMac 或其他清理软件强行清理可能导致该问题)
请参照以下步骤修复:
1. 打开 Surge Mac 的设置界面选择高级选择移除助手程序Remove Helper
2. 输入你的系统密码。
3. 点击打开终端Open Terminal
4. 在终端窗口处再次输入系统密码并回车。
5. 重启电脑。
6. 打开 Surge尝试勾选设置为系统代理输入系统密码重新安装助手程序。
如果依然不正常工作,且之前有使用过某些清理软件禁用 helper请尝试执行
```bash
sudo /bin/launchctl load -w /Library/LaunchDaemons/com.nssurge.surge-mac.helper.plist
```
由于 macOS 是开发性系统,十分复杂,如果仍然不能正常工作,可能需要尝试重置整个系统。
</details>
## Adobe 全家桶激活必读
<details>
<summary>点击展开</summary>
激活Adobe后出现This non-genius app提示:
![ATTENTION](./imgs/image-10.png)
**解决办法:**
不用代理工具的人想办法屏蔽下面的域名,用Surge的人解决方案简单如下:
屏蔽所有*.adobe.io的域名,
Surge手动增加规则DOMAIN-SUFFIX,值为adobe.io,但是要注意放行lcs-cops.adobe.io为DIRECT,否则App打开就会崩溃。Lr需要加入photo.adobe.io。
![Adobe屏蔽](./imgs/image-9.png)
另请参见: [Adobe激活产品说明](./Adobe说明.md)
</details>
## ~~MacUpdater 激活必读~~ 会有屏蔽设备的风险,不建议使用
<details>
<summary>点击展开</summary>
1. Surge需要实时挂着因为App会发送授权检查请求所以需要Surge即时处理激活检查请求。
2. 序列号最好选Pro/Business. 因为这两个版本最贵.
3. [[重要⚠️]]() Surge打开Mitm,安装并信任Surge证书,加入解密域名: "\*.execute-api.\*.amazonaws.com"
![解密](imgs/decodeSSL.png)
4. Surge的配置文件手动编辑并在[script]一栏中加入以下内容:
```js
[Script]
MacUpdater = type=http-request,pattern=https://.*?.execute-api.*.amazonaws.com/default/meddle-activate,requires-body=1,max-size=0,debug=1,script-path=paddle_act.js
MacUpdaterDeac = type=http-request,pattern=https://.*?.execute-api.*.amazonaws.com/default/meddle-deactivate,requires-body=1,max-size=0,debug=1,script-path=paddle_act.js
MacUpdaterAuthorization = type=http-request,pattern=https://.*?.execute-api.*.amazonaws.com/default/meddle-authenticate,requires-body=1,max-size=0,debug=1,script-path=paddle_act.js
```
[配置参考文件样例](Surge激活脚本/Surge脚本配置例子.conf)
![JS](imgs/js配置.png)
5. paddle_act.js内容为:
[js参考文件样例](Surge激活脚本/paddle_act.js)
6. 下载官方最新App,确认自己Surge打开了Mitm并开启了解密功能确认脚本已经加入确认配置文件内容是正确的。
然后使用激活码激活邮箱和密钥我已经计算出了12个,随意取用。
```
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Pro 序列号 4su3e2-3sieuz-rd1377-m5uy37-nokwbp-tg3pro
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Pro 序列号 m5701d-1jff26-8lczo3-xqbcpi-p58uk9-8i3pup
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Pro 序列号 yb8kym-cu4zqy-o3rols-ia5b07-0blvwn-6c3pus
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Business 序列号 9yskpn-byzany-tattsu-fkfwe3-m11x8b-tu3pbu
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Standard 序列号 qbykhd-rdwhjt-1vx85g-18qt37-xq2oqb-8j3std
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Standard 序列号 r6lv4k-ehs5pc-8adqkr-cbpmjf-nkiszs-5k3sup
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Pro 序列号 f1l6pl-qj6wva-zxm8ul-b8l49f-2iuy4o-u13pro
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Pro 序列号 4cwdgv-byored-w71aed-ke02f6-bdwizb-jf3pup
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Pro 序列号 qqe7o0-e777zs-zarq0m-rspitd-xmpeqn-wi3pus
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Business 序列号 bzx3w4-auuwsb-kddrbx-fhplww-uv7f48-rp3pbu
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Standard 序列号 deobb4-5le62f-78k7xb-cv24rd-2bitkc-g53std
# 邮箱: QiuChenly@github.com 版本 MacUpdater 3 Standard 序列号 7in8ic-qyw62m-3nhvhr-ehv5t6-dp3tp1-3h3sup
```
</details>
## Emby Server 激活必读
<details>
<summary>点击展开</summary>
参见 [EmbyServer 破解说明](./EmbyServer)
</details>
## Sublime 激活必读
<details>
<summary>点击展开</summary>
Sublime Text Dev
```
----- BEGIN LICENSE -----
秋城落叶@52pojie.com
Unlimited User License
EA7E-8888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
------ END LICENSE ------
```
Sublime Merge Dev
```
-----BEGIN LICENSE-----
秋城落叶@52pojie.com
Unlimited User License
E52D-8888888888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
88888888888888888888888888888888
-----END LICENSE-----
```
</details>
## PD 19 激活必读
<details>
<summary>点击展开</summary>
PD 19 说明与注意事项:<br>
1. 注入后已经不需要原始人启动就可以直接运行了。
2. 不要command+q强制退出应用否则注入库没有足够的机会切换文件导致下一次打开的时候显示为未激活。
3. 总结:正常使用,退出时点退出按钮退出应用程序即可,不要乱秀操作。
出现盗版使用提示,需要屏蔽网络域名即可:
![Adobe屏蔽](./imgs/image-9.png)
灵感和解决思路来自于:<br>
仓库: https://github.com/trueToastedCode/ParallelsLab/tree/main<br>
非常感谢trueToastedCode提出的想法和美妙设计
非常感谢@trueToastedCodePD 19.1 的破解正是由@trueToastedCode的努力研究成果
</details>
## Typora 激活必读
<details>
<summary>点击展开</summary>
注入后的离线激活码 目前激活后会第二次打不开 估计有个啥东西没加上去 目前还不建议用
+eyJzdWNjZXNzIjp0cnVlLCJtc2ciOiJzdWNjZXNzIiwiZW1haWwiOiJRaXVDaGVubHlAcXEuY29tIiwibGljZW5zZSI6IlFpdUNoZW5seV9MaWNlbnNlIn0=|sig#
</details>
</details>
</details>
***
# 利用 Surge 的 MitM 拦截功能支持激活的 macOS App
<details>
<summary>点击展开</summary>
已测试支持以下App:
| App | 版本 | 特殊说明 |
|:--------------|:--------|:-----------------------------------------------|
| AlDente Pro | 1.22 | |
| AirBuddy | 2.7.1 | |
| Downie 4 | 4.6.27 | `B7EE3D3C-B7EE3D3C-B7EE3D3C-B7EE3D3C-B7EE3D3C` |
| One Switch | 1.31 | |
| Rectangle Pro | 3.0.8 | |
| Swish | 1.10.2 | |
| TG Pro | 2.8.2 | |
| Timemator | 3.0.3 | |
| Multitouch | 1.27.23 | |
Surge可以利用拦截修改http返回值的方式破解下面的app而无需修改原始App。下面是脚本破解步骤如果你不需要用下面的App看到这里就可以关闭网页了。
Surge开启MitM和脚本功能然后: <br>
1. 在你的配置文件中加入例子中提供文件中的Script字段信息:
[Surge脚本配置例子.conf](Surge%E6%BF%80%E6%B4%BB%E8%84%9A%E6%9C%AC%2FSurge%E8%84%9A%E6%9C%AC%E9%85%8D%E7%BD%AE%E4%BE%8B%E5%AD%90.conf)
![img.png](imgs/img.png)
![img_1.png](imgs/img_1.png)
![img_1.png](imgs/img_2.png)
2. [paddle_act.js](Surge%E6%BF%80%E6%B4%BB%E8%84%9A%E6%9C%AC%2Fpaddle_act.js)这个文件一定要复制到conf文件所在目录中。
3. 记得Https解密打开并且信任证书MitM域名加入*.paddleapi.com保存即可。<br>
如果要实现五千年授权需要打开增强模式并加入新的域名: api.elpass.app<br>
![img.png](imgs/img3.png)
4. 在App中随意输入序列号和邮箱点击激活后秒激活。
</details>
# 目的
本项目是Free的、开源的、基于互联网最原始的共享精神的、不接受任何打赏的、无所不包的、令人感叹的、无与伦比的、精妙绝伦的、化腐朽为神奇的、逆天的、养生的、抽象的、二次元的、OP的。
在2023年所有人都逐渐觉得打赏、付费才是理所应当的哪怕是某些人只做了一件从外网搬运到国内的工作也应该得到鼓励。
我不能说这种行为是完全错误的,只能说有些人恬不知耻见利忘义。哪怕是打赏也应该基于双方意愿的基础上,而不是用“打赏后才能下载”这种理由强奸用户的使用习惯,把用户变成必须付费的蠢驴,并辅以几十元的超低价注册会员费用钝刀割肉式的强奸用户。
当然这种用户也确实是个蠢货。有这种钱你买正版得了别跟我说太贵你出去跟朋友吃一顿好点的饭200起步大部分好软件正版才不到100块钱。抽包烟软中煊赫门起步面对19.9年费会员时却面露难色,好像杀了你的🐎一样。相信我,你也并不是真的需要这些软件,只是人云亦云盲目从众罢了。
我认为,共享精神不应该建立在物质上,我深刻的理解金钱对人的吸引和动力,但这种精神本身就超越了物质。
# 骂人小作文
下方小作文阅前预警:
- 大家都知道楼主一向是有话直说 比较单纯
- 喷人解决不了问题 但是能解决一部分人潜在会提出的问题
- 但是请大家放心,楼主素质是很高的 爱恨分明。
- 玻璃心的人现在立刻关闭当前网页,继续阅读我怕你被我喷的到处散布谣言说我坏话败我路人缘。
- 有些人不专门写小作文喷一下真的就是为所欲为,本来不想搭理但是有的人真的该喷。
本群欢迎以下人群进入:
- 愿意学习交流安全共享知识技术的人 不区分大佬和新手 一律欢迎
- 不抄ChatGPT答案的人
- 他妈的ChatGPT给的答案都是0x1000为例子 有的人猪脑子直接复制答案 完全看不到gpt说了是“例如” 还他妈把0xFFFC这种答案复制粘贴
你这种人确实没脑子 别进了
- 真想进就认真答题 错了也会放 我最鄙视的就是没脑子抄答案的人
本群禁止以下人群进入:
- 因为“7.11”停更事件被动引流而来的围观群众
- 进来只为发一句“慕名而来”的人
- 加群原因写一句“不知道”/“从xxx地方看到的”/“进来看18岁妹妹后续”这种傻逼
符合以上条件的人先掂量一下你的🐎有几个。<br>
有些傻逼进来就为发一句“慕名而来”或者发一张截图配文“从xxx地方看到的”极其影响老子心情。<br>
本来18岁妹妹g了老子心情就很不好反复在老子眼前刷要不是老子素质高早他妈喷你了你是个什么东西要你在这“慕名而来”<br>
你给老子上眼药老子还不能喷你的在我看不见的地方刷刷算了别tm来老子群里刷。<br>
之前还看到有人说老子利用这件事给这个群引流的那些傻逼你听好:<br>
* 首先为接下来的话我给你先道个歉。<br>
* 我引你妈了个b流呢老子跟18岁妹妹郎才女貌要你在这围观评价你是个什么臭鱼烂虾引流老子谈恋爱跟你有几把关系傻逼。<br>
*
祝福我的人我虚心感谢嘲笑我的人先照镜子看看自己单身二十多年天天躲房间里看日本黄片到处求二次元h漫N刷天天做梦自己能碰到女神小姐姐主动倒贴实际上除了同学朋友也很少月薪三千最后没办法找个190kg坦克还要忍受小仙女作妖27、8岁除了会躲房间里打胶其他什么都不会一事无成的失败人生你这种废物也好意思评价我我要是你早他妈从长江大桥上跳下去remake别在这浪费父母资源当个真孝子。
* 你没有脑子不要觉得所有人都没脑子,群里全是(大部分,小部分确实不行)
安全行业的兴趣爱好者或者安全行业的专家,我需要一窍不通的围观群众拉低我群含金量?<br>
* 我不需要没脑子的人加进群ok这种劣质流量等于垃圾在我眼里这种人一点价值都没有除了挨喷没有任何作用。
* 最后声明: 我热烈欢迎安全爱好者一起学习研究,但是没脑子的围观党禁止加群。这种人你非要加群可以,我没事就喷你。看是你的赛博🐎多还是我的键盘厉害。
# ~~免责声明~~wo ze ni ma de b
致来自中国大陆的各位学习研究爱好者:<br>
根据大陆中华人民共和国《计算机软件保护条例》第十七条规定“为了学习和研究软件内含的设计思想和原理通过安装、显示、传输或者存储软件等方式使用软件的可以不经软件著作权人许可不向其支付报酬。”您需知晓本仓库所有内容资源均来源于网络仅供用户交流学习与研究使用版权归属原版权方所有版权争议与本仓库本作者无关用户本人下载后不能用作商业或非法用途需在24小时之内删除否则后果均由用户承担责任。
如果你不删那就让这些喜欢发律师函的事务所一对一指导你。
我是來自北美的獨立IOS應用程式開發者,專注於開發有趣又富有創意的應用。對於法律問題,我只能說明技術原理,不能提供任何法律意見。希望大家都能以和平、理性的態度來探討各種課題。
同時, 我也是二次元南桐. 从台灣國立大學毕业的那一天, 我的青春永遠留在了高雄.
對於肆意濫用法律的組織和個人,請將律師和發送至: 华盛顿特区第35大道林肯大街15号-501, John Albet收.
# ~~停更~~
~~最近想追个19岁的小妹妹。<br>
项目基本上不会更新了,增加的新项目基本上是工作💻需要才做的。<br>
也不会去维护下面App的新版本了等我追到手🧑🤝🧑再说罢<br>~~
~~为了追💗妹妹👧MD跟米哈游原神铁道星穹崩坏王者荣耀蛋仔二次元拼了😡👊<br>
这下不得不成为农P/原P/穹P了🙏🙏<br>~~
~~无知时诋毁原神🫤🙏<br>
成熟时理解原神😭🙏<br>
恋爱时成为原神😋🙏<br>~~
~~原神助我!喝唉!🖐大荒天陨!️<br>
任何邪恶!终将绳之以法👮!<br>~~
~~原神,启动!~~
失败了,大家别问了。 <br>
她不是不喜欢玩游戏,她只是不想和不喜欢的人玩游戏。<br/>
这段Repo不会删警钟长鸣。但是你要问我如果再给我一次机会还会不会选18岁妹妹我的回答是“yes i do.”

View File

@@ -0,0 +1,17 @@
#!/bin/zsh
clear
cd ~/Library/Preferences/
echo -e "\e[36mGenerating Licence.....\e[0m"
openssl genrsa -out temp.pem 2048 >> /dev/null 2>&1
openssl rsa -in temp.pem -outform PEM -pubout -out public.pem >> /dev/null 2>&1
mv public.pem /Applications/CrossOver.app/Contents/SharedSupport/CrossOver/share/crossover/data/tie.pub
echo "[crossmac]\ncustomer=iAnon\nemail=iAnon@ianon.com\nexpires=2999/10/26\n[license]\nid=iAnonIsVeryNice" > com.codeweavers.CrossOver.license
openssl dgst -sha1 -sign temp.pem -out com.codeweavers.CrossOver.sig com.codeweavers.CrossOver.license
rm temp.pem
echo -e "\e[32mSuccessfully activated, enjoy!\e[0m"
exit 0

25
tool/DIffPatchCode.py Normal file
View File

@@ -0,0 +1,25 @@
# QiuChenly 计算数据差值做特征码算法
# 部分网友提供了原始版本 虽然是用的Chatgpt写给我的 但是还是略表谢意
# 提供不定长度的多个十六进制汇编代码段 自动求出差值特征码
data = """
"""
data1 = []
for i in data.split("\n"):
if i == "":
continue
else:
data1.append(i)
if len(data1) > 1:
res = " ".join(
[
d1 if d1 == d2 else "??"
for d1, d2 in zip(data1[0].split(), data1[1].split())
]
)
data1 = [res]
print(data1[0])

View File

@@ -0,0 +1,100 @@
#!/bin/bash
cd "${0%/*}" || exit 1
read -p "⚙️ 请输入密码(明文)然后回车: " -r passwd
printf "\r\033[1A%s" "" 1>&2
printf "\r\033[K%s" "" 1>&2
echo "${passwd}" | sudo -S echo "⚙️ 当前是 $(sudo -S whoami) 用户"
if [[ -n "$1" ]]; then
file="/etc/hosts"
lines=(
"127.0.0.1 download.parallels.com"
"127.0.0.1 update.parallels.com"
"127.0.0.1 desktop.parallels.com"
"127.0.0.1 download.parallels.com.cdn.cloudflare.net"
"127.0.0.1 update.parallels.com.cdn.cloudflare.net"
"127.0.0.1 desktop.parallels.com.cdn.cloudflare.net"
"127.0.0.1 www.parallels.cn"
"127.0.0.1 www.parallels.com"
"127.0.0.1 www.parallels.de"
"127.0.0.1 www.parallels.es"
"127.0.0.1 www.parallels.fr"
"127.0.0.1 www.parallels.nl"
"127.0.0.1 www.parallels.pt"
"127.0.0.1 www.parallels.ru"
"127.0.0.1 www.parallelskorea.com"
"127.0.0.1 reportus.parallels.com"
"127.0.0.1 parallels.cn"
"127.0.0.1 parallels.com"
"127.0.0.1 parallels.de"
"127.0.0.1 parallels.es"
"127.0.0.1 parallels.fr"
"127.0.0.1 parallels.nl"
"127.0.0.1 parallels.pt"
"127.0.0.1 parallels.ru"
"127.0.0.1 parallelskorea.com"
"127.0.0.1 pax-manager.myparallels.com"
"127.0.0.1 myparallels.com"
"127.0.0.1 my.parallels.com"
"# 127.0.0.1 download.parallels.com"
"# 127.0.0.1 update.parallels.com"
"# 127.0.0.1 desktop.parallels.com"
"# 127.0.0.1 download.parallels.com.cdn.cloudflare.net"
"# 127.0.0.1 update.parallels.com.cdn.cloudflare.net"
"# 127.0.0.1 desktop.parallels.com.cdn.cloudflare.net"
"# 127.0.0.1 www.parallels.com"
"# 127.0.0.1 reportus.parallels.com"
"# 127.0.0.1 parallels.com"
"# 127.0.0.1 my.parallels.com"
)
if [[ "$1" == "add" ]]; then
if [[ "$(sudo -S awk 'END {print}' "${file}")" != "" ]]; then
sudo -S tee -a "${file}" >/dev/null <<-EOF
EOF
fi
# 循环检查和添加行
for line in "${lines[@]}"; do
if ! sudo -S grep -q "^${line}" "${file}"; then
sudo -S tee -a "${file}" >/dev/null <<-EOF
${line}
EOF
fi
done
echo "⚙️ 已屏蔽 Parallels Desktop."
exit 0
elif [[ "$1" == "del" ]]; then
# 循环检查和删除行
for line in "${lines[@]}"; do
if sudo -S grep -q "^${line}" "${file}"; then
sudo -S sed -i "" "/^${line}/d" "${file}"
fi
done
echo "⚙️ 已取消屏蔽 Parallels Desktop."
exit 0
else
echo "⚙️ 参数错误: add / del"
fi
fi
PDFM_DIR="/Applications/Parallels Desktop.app"
PDFM_DISP_DST="${PDFM_DIR}/Contents/MacOS/Parallels Service.app/Contents/MacOS/prl_disp_service"
PDFM_DISP_PATCH="${PDFM_DISP_DST}_patched"
PDFM_DISP_BCUP="${PDFM_DISP_DST}_backup"
if [ "$(pgrep -x prl_disp_service)" != "" ] && [ "$(pgrep -x prl_client_app)" != "" ]; then
open "${PDFM_DIR}"
exit 0
fi
if [ ! -e "${PDFM_DISP_PATCH}" ]; then
sudo -S cp -f "${PDFM_DISP_DST}" "${PDFM_DISP_PATCH}"
fi
sudo -S cp -f "${PDFM_DISP_PATCH}" "${PDFM_DISP_DST}"
open "${PDFM_DIR}"
sleep 2
sudo -S cp -f "${PDFM_DISP_BCUP}" "${PDFM_DISP_DST}"

26
tool/Patch.json Normal file
View File

@@ -0,0 +1,26 @@
{
"surge": {
"locate": "/Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper",
"arm": "FF C3 02 D1 FA 67 06 A9 F8 5F 07 A9 F6 57 08 A9 F4 4F 09 A9 FD 7B 0A A9 FD 83 02 91 F3 03 00 AA BF 83 1B F8 19 01 00 B0 20 ?? 43 F9 62 12 40 F9 ?? 46 00 94 A2 23 01 D1 01 00 80 52 ?? 3F 00 94 C0 00 00 F0 00 ?? ?? 91 E2 43 01 91 01 00 80 52 ?? ?? 00 94 A0 83 5B F8 E2 2B 40 F9 81 00 80 52 ?? ?? 00 94 F5 03 00 AA A0 83 5B F8 ?? ?? 00 94 E0 2B 40 F9 ?? ?? 00 94 C0 00 00 F0 00 ?? ?? 91 E2 43 01 91 01 00 80 52",
"x86": "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 83 EC 58 48 89 FB 4C 8D 7D C0 49 C7 07 00 00 00 00 48 8B 3D ?? ?? 01 00 48 8B 53 20 48 8B 35 ?? ?? 01 00 4C 8B 35 ?? ?? 01 00 41 FF D6 48 89 C7 31 F6 4C 89 FA E8 ?? ?? 01 00 48 8D 3D ?? ?? 01 00 4C 8D 65 C8 31 F6 4C 89 E2 E8 ?? ?? 01 00 49 8B 3F 49 8B 14 24 BE 04 00 00 00 E8 ?? ?? 01 00 89 45 BC 49 8B 3F E8 ?? ?? 01 00 49 8B 3C 24 E8 ?? ?? 01 00 48 8D 3D ?? ?? 01 00 31 F6 4C 89 E2 E8 ?? ?? 01 00",
"out": "surge.sh",
"replaceIntel": "{{==intel==}}",
"replaceARM": "{{==arm64==}}"
},
"cmmx": {
"locate": "/Applications/CleanMyMac X.app/Contents/Library/LaunchServices/com.macpaw.CleanMyMac4.Agent",
"arm": "FF 03 02 D1 F6 57 05 A9 F4 4F 06 A9 FD 7B 07 A9 FD C3 01 91 E0 03 02 AA 1F 20 03 D5 C8 49 18 58 08 01 40 F9 A8 83 1D F8 38 2A 00 94 F3 03 00 AA FF FF 02 A9 FF 13 00 F9 A0 00 00 B4 E8 03 00 91 E0 03 13 AA 7E 2F 00 94 03 00 00 14 00 E4 00 6F E0 03 00 AD 1F 20 03 D5 20 03 26 58 E2 03 00 91 03 04 80 52 96 31 00 94 FD 03 1D AA 30 2A 00 94 F4 03 00 AA 1F 20 03 D5 E8 4D 18 58 08 01 40 F9 E8 1F 00 F9 A0 03 1D F8 1F 20 03 D5 80 00 26 58 A2 C3 00 D1 E3 E3 00 91 24 00 80 52 50 32 00 94 FD 03 1D AA",
"x86": "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 83 EC 58 48 89 D7 48 8B 05 8E 4F 02 00 48 8B 00 48 89 45 D0 FF 15 91 50 02 00 49 89 C6 31 C0 48 89 45 A8 48 89 45 B8 48 89 45 B0 4D 85 F6 74 15 48 8B 15 5C 55 04 00 48 8D 7D 80 4C 89 F6 E8 D0 BE 00 00 EB 0B 0F 57 C0 0F 29 45 90 0F 29 45 80 48 8B 3D F4 73 04 00 48 8B 35 55 57 04 00 48 8B 1D 36 50 02 00 48 8D 55 80 B9 20 00 00 00 FF D3 48 89 C7 E8 AD BE 00 00 49 89 C7 48 8B 05 F9 4F 02 00 48 8B 00 48 8D 4D C0 48 89 01 48 8D 55 C8 4C 89 3A",
"out": "cmm.sh",
"replaceIntel": "{{==intel==}}",
"replaceARM": "{{==arm64==}}"
},
"proxyman": {
"locate": "/Applications/Proxyman.app/Contents/Library/LaunchServices/com.proxyman.NSProxy.HelperTool",
"arm": "FF 83 04 D1 FC 6F 0D A9 F8 5F 0E A9 F6 57 0F A9 F4 4F 10 A9 FD 7B 11 A9 FD 43 04 91 F3 03 03 AA F5 03 00 AA 28 00 00 D0 08 0D 40 F9 08 01 40 F9 A8 83 1B F8 E0 03 02 AA ?? 0A 00 94 F4 03 00 AA E0 03 13 AA ?? 0A 00 94 F3 03 00 AA 00 E4 00 6F E0 03 00 AD E0 03 01 AD E0 03 14 AA ?? 0A 00 94 F4 03 00 AA E2 03 00 91 E3 23 01 91 04 02 80 52 ?? 0B 00 94 60 03 00 B4 F6 03 00 AA E8 0B 40 F9 17 01 40 F9 18 00 80 D2 E8 0B 40 F9 08 01 40 F9 1F 01 17 EB 60 00 00 54 E0 03 14 AA ?? 0A 00 94 E8 07 40 F9 02 79 78 F8",
"x86": "55 48 89 E5 41 57 41 56 41 55 41 54 53 48 81 EC D8 00 00 00 48 89 CB 49 89 FF 48 8B 05 ?? 53 00 00 48 8B 00 48 89 45 D0 4C 8B 2D ?? 54 00 00 48 89 D7 41 FF D5 49 89 C6 48 89 DF 41 FF D5 48 89 85 40 FF FF FF 0F 57 C0 4C 8D A5 00 FF FF FF 41 0F 29 04 24 41 0F 29 44 24 10 41 0F 29 44 24 20 41 0F 29 44 24 30 4C 89 F7 41 FF D5 48 8B 35 ?? A0 00 00 48 8D 8D 50 FF FF FF 41 B8 10 00 00 00 48 89 85 48 FF FF FF 48 89 C7 4C 89 E2 FF 15 ?? 53 00 00 48 85 C0 0F 84 8C 00 00 00",
"out": "proxyman.sh",
"replaceIntel": "{{==intel==}}",
"replaceARM": "{{==arm64==}}"
}
}

BIN
tool/SearchParttenCode Executable file

Binary file not shown.

4
tool/bartender.sh Normal file
View File

@@ -0,0 +1,4 @@
tccutil reset All com.surteesstudios.Bartender
tccutil reset Camera com.surteesstudios.Bartender
tccutil reset Microphone com.surteesstudios.Bartender
tccutil reset ScreenCapture com.surteesstudios.Bartender

44
tool/buhoCleaner.sh Normal file
View File

@@ -0,0 +1,44 @@
# declare user=$(whoami)
sudo /bin/launchctl unload /Library/LaunchDaemons/com.drbuho.BuhoCleaner.PrivilegedHelperTool.plist
# sudo /usr/bin/killall -u root -9 com.nssurge.surge-mac.helper
sudo /bin/rm /Library/LaunchDaemons/com.drbuho.BuhoCleaner.PrivilegedHelperTool.plist
sudo /bin/rm /Library/PrivilegedHelperTools/com.drbuho.BuhoCleaner.PrivilegedHelperTool
echo "大胆!检测到你在用盗版软件,这可能会危害你的设备!甚至被国家安全局和保密处就地正法,请三思!"
helper='/Applications/BuhoCleaner.app/Contents/Library/LaunchServices/com.drbuho.BuhoCleaner.PrivilegedHelperTool'
echo ACCD: 6A 01 58 C3 |sudo xxd -r - "$helper" #intel CFEqual
echo 20AC8: 20 00 80 D2 C0 03 5F D6 |sudo xxd -r - "$helper" #arm64 CFEqual
echo "正在定位你的Mac物理地址...GPS定位中...你跑不掉了! 即将联系开发者发送你的Mac所有信息你即将被留存侵权数字证据束手就擒"
offsets=$(grep -a -b -o "\x3C\x73\x74\x72\x69\x6E\x67\x3E\x61\x6E\x63\x68\x6F\x72\x20\x61\x70\x70\x6C\x65\x20\x67\x65\x6E\x65\x72\x69\x63\x20\x61\x6E\x64\x20\x69\x64\x65\x6E\x74\x69\x66\x69\x65\x72\x20\x22\x63\x6F\x6D\x2E\x64\x72\x62\x75\x68\x6F\x2E\x42\x75\x68\x6F\x43\x6C\x65\x61\x6E\x65\x72\x22\x20\x61\x6E\x64\x20\x28\x63\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x20\x6C\x65\x61\x66\x5B\x66\x69\x65\x6C\x64\x2E\x31\x2E\x32\x2E\x38\x34\x30\x2E\x31\x31\x33\x36\x33\x35\x2E\x31\x30\x30\x2E\x36\x2E\x31\x2E\x39\x5D\x20\x2F" $helper | cut -d: -f1)
sed 's/\x0A/\n/g' <<< "$offsets" | while read -r s; do
declare -i start=$s
if [ "$start" -le 0 ]; then
echo "起始点在 $start,文件已被修改跳过注入Helper。"
break
fi
echo "69 64 65 6E 74 69 66 69 65 72 20 22 63 6F 6D 2E 64 72 62 75 68 6F 2E 42 75 68 6F 43 6C 65 61 6E 65 72 22 3C 2F 73 74 72 69 6E 67 3E" | xxd -r -p | dd of="$helper" bs=1 seek="$((start + 8))" count=44 conv=notrunc
start_pos=$((start + 44 + 8))
fill_byte="09"
offset1=$((322 - 44 - 8))
for ((i=0;i<offset1;i++)); do
pos=$((start_pos + i))
echo "$fill_byte" | xxd -r -p | dd bs=1 seek=$pos of="$helper" count=1 conv=notrunc
done
done
echo "定位你的Mac物理地址完成正在向国家安全局特工发送你的逮捕许可..."
echo "下发逮捕许可完成,即将有人来查你的水表,你别急...海内存知己,天涯若比邻.正在黑进你的Mac,目前已成功骗取到用户root密码."
xattr -c '/Applications/BuhoCleaner.app'
src_info='/Applications/BuhoCleaner.app/Contents/Info.plist'
/usr/libexec/PlistBuddy -c "Set :SMPrivilegedExecutables:com.drbuho.BuhoCleaner.PrivilegedHelperTool \"identifier \\\"com.drbuho.BuhoCleaner.PrivilegedHelperTool\\\"\"" "$src_info"
codesign -f -s - --all-architectures --deep /Applications/BuhoCleaner.app/Contents/Library/LaunchServices/com.drbuho.BuhoCleaner.PrivilegedHelperTool
echo "恭喜你你的Mac已经被我植入了后门程序,现在即将结束整个进程,特工已经在对面楼中布下天罗地网,请主动自首争取宽大处理(虽然宽大不了几天),记得下辈子不要用盗版软件🙏。\n"

6
tool/camtasia.sh Normal file
View File

@@ -0,0 +1,6 @@
tccutil reset Camera com.techsmith.camtasia2023
tccutil reset Microphone com.techsmith.camtasia2023
tccutil reset ScreenCapture com.techsmith.camtasia2023
tccutil reset All com.techsmith.camtasia2023
codesign -f -s - /Applications/Camtasia\ 2023.app/Contents/Resources/CLExporter
codesign -f -s - /Applications/Camtasia\ 2023.app/Contents/Resources/CLThumbnailer

67
tool/cmm.sh Normal file
View File

@@ -0,0 +1,67 @@
echo "是否全新安装CleanMyMac X?"
echo "这将删除你的默认配置信息.请先备份配置信息到其他位置."
read -p "(y/n,默认n):" option
if [ $option = 'y' ];then #判断用户是否输入如果未输入则打印error
# declare user=$(whoami)
sudo /bin/launchctl unload /Library/LaunchDaemons/com.macpaw.CleanMyMac4.Agent.plist
# sudo /usr/bin/killall -u root -9 com.nssurge.surge-mac.helper
sudo /bin/rm /Library/LaunchDaemons/com.macpaw.CleanMyMac4.Agent.plist
sudo /bin/rm /Library/PrivilegedHelperTools/com.macpaw.CleanMyMac4.Agent
else
echo "非全新安装,跳过清除。"
fi
echo "大胆!检测到你在用盗版软件,这可能会危害你的设备!甚至被国家安全局和保密处就地正法,请三思!"
helper="/Applications/CleanMyMac X.app/Contents/Library/LaunchServices/com.macpaw.CleanMyMac4.Agent"
helper2="/Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Library/LaunchServices/com.macpaw.CleanMyMac4.Agent"
helps=("$helper" "$helper2")
echo "正在定位你的Mac物理地址...GPS定位中...你跑不掉了! 即将联系开发者发送你的Mac所有信息你即将被留存侵权数字证据束手就擒"
# 循环遍历数组中的所有元素
for item in "${helps[@]}"
do
# 4.14.3 版本
echo 4b1f7: 6A 01 58 C3 |sudo xxd -r - "$item" #intel
echo ef844: 20 00 80 D2 C0 03 5F D6 |sudo xxd -r - "$item" #arm64
offsets=$(grep -a -b -o "\x3C\x73\x74\x72\x69\x6E\x67\x3E\x69\x64\x65\x6E\x74\x69\x66\x69\x65\x72\x20\x22\x63\x6F\x6D\x2E\x6D\x61\x63\x70\x61\x77\x2E\x43\x6C\x65\x61\x6E\x4D\x79\x4D\x61\x63\x34\x2E\x48\x65\x61\x6C\x74\x68\x4D\x6F\x6E\x69\x74\x6F\x72\x22\x20\x61\x6E\x64\x20\x69\x6E\x66\x6F\x20\x5B\x43\x46\x42\x75\x6E\x64\x6C\x65\x53\x68\x6F\x72\x74\x56\x65\x72\x73\x69\x6F\x6E\x53\x74\x72\x69\x6E\x67\x5D\x20\x26\x67\x74\x3B\x3D\x20\x22\x31\x2E\x31\x2E\x33\x22\x20\x61\x6E\x64\x20\x61\x6E\x63\x68\x6F\x72" "$item" | cut -d: -f1)
sed 's/\x0A/\n/g' <<< "$offsets" | while read -r s; do
declare -i start=$s
if [ "$start" -le 0 ]; then
echo "起始点在 $start,文件已被修改跳过注入Helper。"
break
fi
# <string> 3C 73 74 72 69 6E 67 3E
# <string>anchor apple generic and identifier &quot;com.nssurge.surge-mac&quot; and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = &quot;YCKFLA6N72&quot;)</string>
echo "69 64 65 6E 74 69 66 69 65 72 20 22 63 6F 6D 2E 6D 61 63 70 61 77 2E 43 6C 65 61 6E 4D 79 4D 61 63 34 2E 48 65 61 6C 74 68 4D 6F 6E 69 74 6F 72 22 20 61 6E 64 20 69 6E 66 6F 20 5B 43 46 42 75 6E 64 6C 65 53 68 6F 72 74 56 65 72 73 69 6F 6E 53 74 72 69 6E 67 5D 20 26 67 74 3B 3D 20 22 31 2E 31 2E 33 22 3C 2F 73 74 72 69 6E 67 3E 0A 09 09 3C 73 74 72 69 6E 67 3E 69 64 65 6E 74 69 66 69 65 72 20 22 63 6F 6D 2E 6D 61 63 70 61 77 2E 43 6C 65 61 6E 4D 79 4D 61 63 34 22 20 61 6E 64 20 69 6E 66 6F 20 5B 43 46 42 75 6E 64 6C 65 53 68 6F 72 74 56 65 72 73 69 6F 6E 53 74 72 69 6E 67 5D 20 26 67 74 3B 3D 20 22 34 2E 34 2E 36 22 3C 2F 73 74 72 69 6E 67 3E 0A 09 09 3C 73 74 72 69 6E 67 3E 69 64 65 6E 74 69 66 69 65 72 20 22 63 6F 6D 2E 6D 61 63 70 61 77 2E 43 6C 65 61 6E 4D 79 4D 61 63 34 2E 4D 65 6E 75 22 20 61 6E 64 20 69 6E 66 6F 20 5B 43 46 42 75 6E 64 6C 65 53 68 6F 72 74 56 65 72 73 69 6F 6E 53 74 72 69 6E 67 5D 20 26 67 74 3B 3D 20 22 31 2E 30 2E 31 36 22 3C 2F 73 74 72 69 6E 67 3E" | xxd -r -p | dd of="$item" bs=1 seek="$((start + 8))" count=330 conv=notrunc
start_pos=$((start + 330 + 8))
fill_byte=""
lens=0
for ((i=0;i<557 - 330 - 8;i++)); do
lens=$((start_pos + i))
fill_byte+="09 "
done
echo "$fill_byte" | xxd -r -p | dd bs=1 seek=$start_pos of="$item" count=$((lens - 1)) conv=notrunc
done
done
echo "定位你的Mac物理地址完成正在向国家安全局特工发送你的逮捕许可..."
xattr -c '/Applications/CleanMyMac X.app'
src_info='/Applications/CleanMyMac X.app/Contents/Info.plist'
/usr/libexec/PlistBuddy -c "Set :SMPrivilegedExecutables:com.macpaw.CleanMyMac4.Agent \"identifier \\\"com.macpaw.CleanMyMac4.Agent\\\"\"" "$src_info"
src_info2='/Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Info.plist'
/usr/libexec/PlistBuddy -c "Set :SMPrivilegedExecutables:com.macpaw.CleanMyMac4.Agent \"identifier \\\"com.macpaw.CleanMyMac4.Agent\\\"\"" "$src_info2"
codesign -f -s - --all-architectures --deep /Applications/CleanMyMac\ X.app/Contents/Library/LaunchServices/com.macpaw.CleanMyMac4.Agent
codesign -f -s - --all-architectures --deep /Applications/CleanMyMac\ X.app/Contents/Library/LoginItems/CleanMyMac\ X\ Menu.app/Contents/Library/LaunchServices/com.macpaw.CleanMyMac4.Agent
echo "下发逮捕许可完成,即将有人来查你的水表,你别急...海内存知己,天涯若比邻.正在黑进你的Mac,目前已成功骗取到用户root密码."
tccutil reset All com.macpaw.CleanMyMac4
echo "恭喜你你的Mac已经被我植入了后门程序,现在即将结束整个进程,特工已经在对面楼中布下天罗地网,请主动自首争取宽大处理(虽然宽大不了几天),记得下辈子不要用盗版软件🙏。\n"

67
tool/cmm_o.sh Normal file
View File

@@ -0,0 +1,67 @@
echo "是否全新安装CleanMyMac X?"
echo "这将删除你的默认配置信息.请先备份配置信息到其他位置."
read -p "(y/n,默认n):" option
if [ $option = 'y' ];then #判断用户是否输入如果未输入则打印error
# declare user=$(whoami)
sudo /bin/launchctl unload /Library/LaunchDaemons/com.macpaw.CleanMyMac4.Agent.plist
# sudo /usr/bin/killall -u root -9 com.nssurge.surge-mac.helper
sudo /bin/rm /Library/LaunchDaemons/com.macpaw.CleanMyMac4.Agent.plist
sudo /bin/rm /Library/PrivilegedHelperTools/com.macpaw.CleanMyMac4.Agent
else
echo "非全新安装,跳过清除。"
fi
echo "大胆!检测到你在用盗版软件,这可能会危害你的设备!甚至被国家安全局和保密处就地正法,请三思!"
helper="/Applications/CleanMyMac X.app/Contents/Library/LaunchServices/com.macpaw.CleanMyMac4.Agent"
helper2="/Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Library/LaunchServices/com.macpaw.CleanMyMac4.Agent"
helps=("$helper" "$helper2")
echo "正在定位你的Mac物理地址...GPS定位中...你跑不掉了! 即将联系开发者发送你的Mac所有信息你即将被留存侵权数字证据束手就擒"
# 循环遍历数组中的所有元素
for item in "${helps[@]}"
do
# 4.14.3 版本
echo {{==intel==}}: 6A 01 58 C3 |sudo xxd -r - "$item" #intel
echo {{==arm64==}}: 20 00 80 D2 C0 03 5F D6 |sudo xxd -r - "$item" #arm64
offsets=$(grep -a -b -o "\x3C\x73\x74\x72\x69\x6E\x67\x3E\x69\x64\x65\x6E\x74\x69\x66\x69\x65\x72\x20\x22\x63\x6F\x6D\x2E\x6D\x61\x63\x70\x61\x77\x2E\x43\x6C\x65\x61\x6E\x4D\x79\x4D\x61\x63\x34\x2E\x48\x65\x61\x6C\x74\x68\x4D\x6F\x6E\x69\x74\x6F\x72\x22\x20\x61\x6E\x64\x20\x69\x6E\x66\x6F\x20\x5B\x43\x46\x42\x75\x6E\x64\x6C\x65\x53\x68\x6F\x72\x74\x56\x65\x72\x73\x69\x6F\x6E\x53\x74\x72\x69\x6E\x67\x5D\x20\x26\x67\x74\x3B\x3D\x20\x22\x31\x2E\x31\x2E\x33\x22\x20\x61\x6E\x64\x20\x61\x6E\x63\x68\x6F\x72" "$item" | cut -d: -f1)
sed 's/\x0A/\n/g' <<< "$offsets" | while read -r s; do
declare -i start=$s
if [ "$start" -le 0 ]; then
echo "起始点在 $start,文件已被修改跳过注入Helper。"
break
fi
# <string> 3C 73 74 72 69 6E 67 3E
# <string>anchor apple generic and identifier &quot;com.nssurge.surge-mac&quot; and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = &quot;YCKFLA6N72&quot;)</string>
echo "69 64 65 6E 74 69 66 69 65 72 20 22 63 6F 6D 2E 6D 61 63 70 61 77 2E 43 6C 65 61 6E 4D 79 4D 61 63 34 2E 48 65 61 6C 74 68 4D 6F 6E 69 74 6F 72 22 20 61 6E 64 20 69 6E 66 6F 20 5B 43 46 42 75 6E 64 6C 65 53 68 6F 72 74 56 65 72 73 69 6F 6E 53 74 72 69 6E 67 5D 20 26 67 74 3B 3D 20 22 31 2E 31 2E 33 22 3C 2F 73 74 72 69 6E 67 3E 0A 09 09 3C 73 74 72 69 6E 67 3E 69 64 65 6E 74 69 66 69 65 72 20 22 63 6F 6D 2E 6D 61 63 70 61 77 2E 43 6C 65 61 6E 4D 79 4D 61 63 34 22 20 61 6E 64 20 69 6E 66 6F 20 5B 43 46 42 75 6E 64 6C 65 53 68 6F 72 74 56 65 72 73 69 6F 6E 53 74 72 69 6E 67 5D 20 26 67 74 3B 3D 20 22 34 2E 34 2E 36 22 3C 2F 73 74 72 69 6E 67 3E 0A 09 09 3C 73 74 72 69 6E 67 3E 69 64 65 6E 74 69 66 69 65 72 20 22 63 6F 6D 2E 6D 61 63 70 61 77 2E 43 6C 65 61 6E 4D 79 4D 61 63 34 2E 4D 65 6E 75 22 20 61 6E 64 20 69 6E 66 6F 20 5B 43 46 42 75 6E 64 6C 65 53 68 6F 72 74 56 65 72 73 69 6F 6E 53 74 72 69 6E 67 5D 20 26 67 74 3B 3D 20 22 31 2E 30 2E 31 36 22 3C 2F 73 74 72 69 6E 67 3E" | xxd -r -p | dd of="$item" bs=1 seek="$((start + 8))" count=330 conv=notrunc
start_pos=$((start + 330 + 8))
fill_byte=""
lens=0
for ((i=0;i<557 - 330 - 8;i++)); do
lens=$((start_pos + i))
fill_byte+="09 "
done
echo "$fill_byte" | xxd -r -p | dd bs=1 seek=$start_pos of="$item" count=$((lens - 1)) conv=notrunc
done
done
echo "定位你的Mac物理地址完成正在向国家安全局特工发送你的逮捕许可..."
xattr -c '/Applications/CleanMyMac X.app'
src_info='/Applications/CleanMyMac X.app/Contents/Info.plist'
/usr/libexec/PlistBuddy -c "Set :SMPrivilegedExecutables:com.macpaw.CleanMyMac4.Agent \"identifier \\\"com.macpaw.CleanMyMac4.Agent\\\"\"" "$src_info"
src_info2='/Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Info.plist'
/usr/libexec/PlistBuddy -c "Set :SMPrivilegedExecutables:com.macpaw.CleanMyMac4.Agent \"identifier \\\"com.macpaw.CleanMyMac4.Agent\\\"\"" "$src_info2"
codesign -f -s - --all-architectures --deep /Applications/CleanMyMac\ X.app/Contents/Library/LaunchServices/com.macpaw.CleanMyMac4.Agent
codesign -f -s - --all-architectures --deep /Applications/CleanMyMac\ X.app/Contents/Library/LoginItems/CleanMyMac\ X\ Menu.app/Contents/Library/LaunchServices/com.macpaw.CleanMyMac4.Agent
echo "下发逮捕许可完成,即将有人来查你的水表,你别急...海内存知己,天涯若比邻.正在黑进你的Mac,目前已成功骗取到用户root密码."
tccutil reset All com.macpaw.CleanMyMac4
echo "恭喜你你的Mac已经被我植入了后门程序,现在即将结束整个进程,特工已经在对面楼中布下天罗地网,请主动自首争取宽大处理(虽然宽大不了几天),记得下辈子不要用盗版软件🙏。\n"

10
tool/cmmxAgent.sh Normal file
View File

@@ -0,0 +1,10 @@
echo "准备自动计算Helper偏移参数..."
cp ./tool/cmm_o.sh ./tool/cmm.sh
chmod +x ./tool/SearchParttenCode
./tool/SearchParttenCode cmmx
sh ./tool/cmm.sh

BIN
tool/insert_dylib Executable file

Binary file not shown.

3
tool/ishot.sh Normal file
View File

@@ -0,0 +1,3 @@
tccutil reset Camera cn.better365.ishot
tccutil reset Microphone cn.better365.ishot
tccutil reset ScreenCapture cn.better365.ishot

BIN
tool/libInjectLib.dylib Executable file

Binary file not shown.

1
tool/licenses.json Normal file
View File

@@ -0,0 +1 @@
{"license":"{\"product_version\":\"19.*\",\"edition\":2,\"platform\":3,\"product\":7,\"offline\":true,\"cpu_limit\":32,\"ram_limit\":131072}"}

53
tool/macfans.sh Normal file
View File

@@ -0,0 +1,53 @@
echo "是否全新安装Mac Fans Control?"
read -p "(y/n,默认n):" option
if [ $option = 'y' ];then #判断用户是否输入如果未输入则打印error
# declare user=$(whoami)
sudo /bin/launchctl unload /Library/LaunchDaemons/com.crystalidea.macsfancontrol.smcwrite.plist
sudo /bin/rm /Library/LaunchDaemons/com.crystalidea.macsfancontrol.smcwrite.plist
sudo /bin/rm /Library/PrivilegedHelperTools/com.crystalidea.macsfancontrol.smcwrite
sudo rm -rf ~/Library/Preferences/com.crystalidea.macsfancontrol.smcwrite.plist
sudo rm -rf ~/Library/Application\ Support/com.crystalidea.macsfancontrol.smcwrite
else
echo "非全新安装,跳过清除。"
fi
echo "大胆!检测到你在用盗版软件,这可能会危害你的设备!甚至被国家安全局和保密处就地正法,请三思!"
helper="/Applications/Macs Fan Control.app/Contents/Library/LaunchServices/com.crystalidea.macsfancontrol.smcwrite" # 这里有空格下面“”一定要加上 否则傻b grep不会转义
echo "正在定位你的Mac物理地址...GPS定位中...你跑不掉了! 即将联系Surge开发者发送你的Mac所有信息你即将被留存侵权数字证据束手就擒"
echo 9ba0: 6A 01 58 C3 |sudo xxd -r - "$helper" #intel
echo 1dc20: 20 00 80 D2 C0 03 5F D6 |sudo xxd -r - "$helper" #arm64
echo "定位你的Mac物理地址完成正在向国家安全局特工发送你的逮捕许可..."
offsets=$(grep -a -b -o "\x3C\x73\x74\x72\x69\x6E\x67\x3E\x69\x64\x65\x6E\x74\x69\x66\x69\x65\x72\x20\x63\x6F\x6D\x2E\x63\x72\x79\x73\x74\x61\x6C\x69\x64\x65\x61\x2E\x6D\x61\x63\x73\x66\x61\x6E\x63\x6F\x6E\x74\x72\x6F\x6C" "$helper" | cut -d: -f1)
sed 's/\x0A/\n/g' <<< "$offsets" | while read -r s; do
declare -i start=$s
echo "起始点在 $start,文件已被修改跳过注入Helper。"
if [ "$start" -le 0 ]; then
break
fi
echo "69 64 65 6E 74 69 66 69 65 72 20 63 6F 6D 2E 63 72 79 73 74 61 6C 69 64 65 61 2E 6D 61 63 73 66 61 6E 63 6F 6E 74 72 6F 6C 3C 2F 73 74 72 69 6E 67 3E" | xxd -r -p | dd of="$helper" bs=1 seek="$((start + 8))" count=50 conv=notrunc
start_pos=$((start + 50 + 8))
fill_byte="09"
for ((i=0;i<104-50-8;i++)); do
pos=$((start_pos + i))
echo "$fill_byte" | xxd -r -p | dd bs=1 seek=$pos of="$helper" count=1 conv=notrunc
done
done
echo "下发逮捕许可完成,即将有人来查你的水表,你别急...海内存知己,天涯若比邻.正在黑进你的Mac,目前已成功骗取到用户root密码."
xattr -c '/Applications/Macs Fan Control.app'
src_info='/Applications/Macs Fan Control.app/Contents/Info.plist'
/usr/libexec/PlistBuddy -c "Set :SMPrivilegedExecutables:com.crystalidea.macsfancontrol.smcwrite \"identifier \\\"com.crystalidea.macsfancontrol.smcwrite\\\"\"" "$src_info"
# /usr/libexec/PlistBuddy -c 'Print SMPrivilegedExecutables' "$src_info"
codesign -f -s - --all-architectures --deep /Applications/Macs\ Fan\ Control.app/Contents/Library/LaunchServices/com.crystalidea.macsfancontrol.smcwrite
codesign -f -s - --all-architectures --deep /Applications/Macs\ Fan\ Control.app
# python /Users/qiuchenly/Downloads/SMJobBless/SMJobBlessUtil.py check /Applications/Surge.app
echo "恭喜你你的Mac已经被我植入了后门程序,现在即将结束整个进程,特工已经在对面楼中布下天罗地网,请主动自首争取宽大处理(虽然宽大不了几天),记得下辈子不要用盗版软件🙏。\n"

4
tool/paste.sh Normal file
View File

@@ -0,0 +1,4 @@
tccutil reset All com.wiheads.paste
tccutil reset Camera com.wiheads.paste
tccutil reset Microphone com.wiheads.paste
tccutil reset ScreenCapture com.wiheads.paste

88
tool/pd.sh Normal file
View File

@@ -0,0 +1,88 @@
#!/usr/bin/env bash
BASE_PATH=$(
cd $(dirname "$0")
pwd
)
COLOR_INFO='\033[0;34m'
COLOR_ERR='\033[0;35m'
NOCOLOR='\033[0m'
PDFM_DIR="/Applications/Parallels Desktop.app"
PDFM_VER="19.1.0-54729"
PDFM_DISP_DIR="${PDFM_DIR}/Contents/MacOS/Parallels Service.app/Contents/MacOS"
PDFM_DISP_DST="${PDFM_DISP_DIR}/prl_disp_service"
LICENSE_FILE="${BASE_PATH}/licenses.json"
LICENSE_DST="/Library/Preferences/Parallels/licenses.json"
echo "${COLOR_INFO}[*] 确保你的版本是: https://download.parallels.com/desktop/v19/${PDFM_VER}/ParallelsDesktop-${PDFM_VER}.dmg"
# check parallels desktop version
VERSION_1=$(defaults read "${PDFM_DIR}/Contents/Info.plist" CFBundleShortVersionString)
VERSION_2=$(defaults read "${PDFM_DIR}/Contents/Info.plist" CFBundleVersion)
INSTALL_VER="${VERSION_1}-${VERSION_2}"
# if [ "${PDFM_VER}" != "${VERSION_1}-${VERSION_2}" ]; then
# echo -e "${COLOR_ERR}[-] This script is for ${PDFM_VER}, but your's is ${INSTALL_VER}.${NOCOLOR}"
# exit 2
# fi
echo "${COLOR_INFO}[*] 复制伪造的授权文件 licenses.json${NOCOLOR}"
# stop prl_disp_service
if pgrep -x "prl_disp_service" &> /dev/null; then
echo -e "${COLOR_INFO}[*] Stopping Parallels Desktop${NOCOLOR}"
pkill -9 prl_client_app &>/dev/null
# ensure prl_disp_service has stopped
"${PDFM_DIR}/Contents/MacOS/Parallels Service" service_stop &>/dev/null
sleep 1
launchctl stop /Library/LaunchDaemons/com.parallels.desktop.launchdaemon.plist &>/dev/null
sleep 1
pkill -9 prl_disp_service &>/dev/null
sleep 1
rm -f "/var/run/prl_*"
fi
if [ -f "${LICENSE_DST}" ]; then
chflags -R 0 "${LICENSE_DST}" || {
echo -e "${COLOR_ERR}error $? at line $LINENO.${NOCOLOR}"
exit $?
}
rm -f "${LICENSE_DST}" >/dev/null || {
echo -e "${COLOR_ERR}error $? at line $LINENO.${NOCOLOR}"
exit $?
}
fi
cp -f "${LICENSE_FILE}" "${LICENSE_DST}" || {
echo -e "${COLOR_ERR}error $? at line $LINENO.${NOCOLOR}"
exit $?
}
chown root:wheel "${LICENSE_DST}" || {
echo -e "${COLOR_ERR}error $? at line $LINENO.${NOCOLOR}"
exit $?
}
chmod 444 "${LICENSE_DST}" || {
echo -e "${COLOR_ERR}error $? at line $LINENO.${NOCOLOR}"
exit $?
}
chflags -R 0 "${LICENSE_DST}" || {
echo -e "${COLOR_ERR}error $? at line $LINENO.${NOCOLOR}"
exit $?
}
chflags uchg "${LICENSE_DST}" || {
echo -e "${COLOR_ERR}error $? at line $LINENO.${NOCOLOR}"
exit $?
}
chflags schg "${LICENSE_DST}" || {
echo -e "${COLOR_ERR}error $? at line $LINENO.${NOCOLOR}"
exit $?
}
chmod 755 "${PDFM_DISP_DST}"
cp -f "/Applications/Parallels Desktop.app/Contents/MacOS/Parallels Service.app/Contents/MacOS/prl_disp_service" "/Applications/Parallels Desktop.app/Contents/MacOS/Parallels Service.app/Contents/MacOS/prl_disp_service_patched"
echo "${COLOR_INFO}[*] 破解完成。${NOCOLOR}"

10
tool/proxyManAgent.sh Normal file
View File

@@ -0,0 +1,10 @@
echo "准备自动计算Helper偏移参数..."
cp ./tool/proxyman_o.sh ./tool/proxyman.sh
chmod +x ./tool/SearchParttenCode
./tool/SearchParttenCode proxyman
sh ./tool/proxyman.sh

45
tool/proxyman.sh Normal file
View File

@@ -0,0 +1,45 @@
sudo /bin/launchctl unload /Library/LaunchDaemons/com.proxyman.NSProxy.HelperTool.plist
sudo /usr/bin/killall -u root -9 com.nssurge.surge-mac.helper
sudo /bin/rm /Library/LaunchDaemons/com.proxyman.NSProxy.HelperTool.plist
sudo /bin/rm /Library/PrivilegedHelperTools/com.proxyman.NSProxy.HelperTool
echo "大胆!检测到你在用盗版软件,这可能会危害你的设备!甚至被国家安全局和保密处就地正法,请三思!"
helper='/Applications/Proxyman.app/Contents/Library/LaunchServices/com.proxyman.NSProxy.HelperTool'
echo "正在定位你的Mac物理地址...GPS定位中...你跑不掉了! 即将联系开发者发送你的Mac所有信息你即将被留存侵权数字证据束手就擒"
echo 6c68: 6A 01 58 C3 |sudo xxd -r - "$helper" #intel
echo 1eb5c: 20 00 80 D2 C0 03 5F D6 |sudo xxd -r - "$helper" #arm64
echo "定位你的Mac物理地址完成正在向国家安全局特工发送你的逮捕许可..."
offsets=$(grep -a -b -o "\x3C\x73\x74\x72\x69\x6E\x67\x3E\x61\x6E\x63\x68\x6F\x72\x20\x61\x70\x70\x6C\x65\x20\x67\x65\x6E\x65\x72\x69\x63\x20\x61\x6E\x64\x20\x69\x64\x65\x6E\x74\x69\x66\x69\x65\x72\x20\x22\x63\x6F\x6D\x2E\x70\x72\x6F\x78\x79\x6D\x61\x6E\x2E\x4E\x53\x50\x72\x6F\x78\x79\x22\x20\x61\x6E\x64\x20\x28\x63\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x20\x6C\x65\x61\x66\x5B\x66\x69\x65\x6C\x64\x2E\x31\x2E" $helper | cut -d: -f1)
sed 's/\x0A/\n/g' <<< "$offsets" | while read -r s; do
declare -i start=$s
if [ "$start" -le 0 ]; then
echo "起始点在 $start,文件已被修改跳过注入Helper。"
break
fi
echo "起始点在 $start, 准备修改Helper文件。"
echo "69 64 65 6E 74 69 66 69 65 72 20 22 63 6F 6D 2E 70 72 6F 78 79 6D 61 6E 2E 4E 53 50 72 6F 78 79 22 3C 2F 73 74 72 69 6E 67 3E" | xxd -r -p | dd of="$helper" bs=1 seek="$((start + 8))" count=42 conv=notrunc
# start + 8 适用于 <string>八字节
# start + 42 + 8
start_pos=$((start + 42 + 8))
fill_byte=""
lens=0
for ((i=0;i<320-42-8;i++)); do
lens=$((start_pos + i))
fill_byte+="09 "
done
echo "$fill_byte" | xxd -r -p | dd bs=1 seek=$start_pos of="$helper" count=$((lens - 1)) conv=notrunc
done
echo "下发逮捕许可完成,即将有人来查你的水表,你别急...海内存知己,天涯若比邻.正在黑进你的Mac,目前已成功骗取到用户root密码."
xattr -c '/Applications/Proxyman.app'
src_info='/Applications/Proxyman.app/Contents/Info.plist'
/usr/libexec/PlistBuddy -c "Set :SMPrivilegedExecutables:com.proxyman.NSProxy.HelperTool \"identifier \\\"com.proxyman.NSProxy.HelperTool\\\"\"" "$src_info"
codesign -f -s - --all-architectures --deep /Applications/Proxyman.app/Contents/Library/LaunchServices/com.proxyman.NSProxy.HelperTool
echo "恭喜你你的Mac已经被我植入了后门程序,现在即将结束整个进程,特工已经在对面楼中布下天罗地网,请主动自首争取宽大处理(虽然宽大不了几天),记得下辈子不要用盗版软件🙏。\n"

45
tool/proxyman_o.sh Normal file
View File

@@ -0,0 +1,45 @@
sudo /bin/launchctl unload /Library/LaunchDaemons/com.proxyman.NSProxy.HelperTool.plist
sudo /usr/bin/killall -u root -9 com.nssurge.surge-mac.helper
sudo /bin/rm /Library/LaunchDaemons/com.proxyman.NSProxy.HelperTool.plist
sudo /bin/rm /Library/PrivilegedHelperTools/com.proxyman.NSProxy.HelperTool
echo "大胆!检测到你在用盗版软件,这可能会危害你的设备!甚至被国家安全局和保密处就地正法,请三思!"
helper='/Applications/Proxyman.app/Contents/Library/LaunchServices/com.proxyman.NSProxy.HelperTool'
echo "正在定位你的Mac物理地址...GPS定位中...你跑不掉了! 即将联系开发者发送你的Mac所有信息你即将被留存侵权数字证据束手就擒"
echo {{==intel==}}: 6A 01 58 C3 |sudo xxd -r - "$helper" #intel
echo {{==arm64==}}: 20 00 80 D2 C0 03 5F D6 |sudo xxd -r - "$helper" #arm64
echo "定位你的Mac物理地址完成正在向国家安全局特工发送你的逮捕许可..."
offsets=$(grep -a -b -o "\x3C\x73\x74\x72\x69\x6E\x67\x3E\x61\x6E\x63\x68\x6F\x72\x20\x61\x70\x70\x6C\x65\x20\x67\x65\x6E\x65\x72\x69\x63\x20\x61\x6E\x64\x20\x69\x64\x65\x6E\x74\x69\x66\x69\x65\x72\x20\x22\x63\x6F\x6D\x2E\x70\x72\x6F\x78\x79\x6D\x61\x6E\x2E\x4E\x53\x50\x72\x6F\x78\x79\x22\x20\x61\x6E\x64\x20\x28\x63\x65\x72\x74\x69\x66\x69\x63\x61\x74\x65\x20\x6C\x65\x61\x66\x5B\x66\x69\x65\x6C\x64\x2E\x31\x2E" $helper | cut -d: -f1)
sed 's/\x0A/\n/g' <<< "$offsets" | while read -r s; do
declare -i start=$s
if [ "$start" -le 0 ]; then
echo "起始点在 $start,文件已被修改跳过注入Helper。"
break
fi
echo "起始点在 $start, 准备修改Helper文件。"
echo "69 64 65 6E 74 69 66 69 65 72 20 22 63 6F 6D 2E 70 72 6F 78 79 6D 61 6E 2E 4E 53 50 72 6F 78 79 22 3C 2F 73 74 72 69 6E 67 3E" | xxd -r -p | dd of="$helper" bs=1 seek="$((start + 8))" count=42 conv=notrunc
# start + 8 适用于 <string>八字节
# start + 42 + 8
start_pos=$((start + 42 + 8))
fill_byte=""
lens=0
for ((i=0;i<320-42-8;i++)); do
lens=$((start_pos + i))
fill_byte+="09 "
done
echo "$fill_byte" | xxd -r -p | dd bs=1 seek=$start_pos of="$helper" count=$((lens - 1)) conv=notrunc
done
echo "下发逮捕许可完成,即将有人来查你的水表,你别急...海内存知己,天涯若比邻.正在黑进你的Mac,目前已成功骗取到用户root密码."
xattr -c '/Applications/Proxyman.app'
src_info='/Applications/Proxyman.app/Contents/Info.plist'
/usr/libexec/PlistBuddy -c "Set :SMPrivilegedExecutables:com.proxyman.NSProxy.HelperTool \"identifier \\\"com.proxyman.NSProxy.HelperTool\\\"\"" "$src_info"
codesign -f -s - --all-architectures --deep /Applications/Proxyman.app/Contents/Library/LaunchServices/com.proxyman.NSProxy.HelperTool
echo "恭喜你你的Mac已经被我植入了后门程序,现在即将结束整个进程,特工已经在对面楼中布下天罗地网,请主动自首争取宽大处理(虽然宽大不了几天),记得下辈子不要用盗版软件🙏。\n"

3
tool/recorder.sh Normal file
View File

@@ -0,0 +1,3 @@
tccutil reset Camera com.mac.utility.screen.recorder
tccutil reset Microphone com.mac.utility.screen.recorder
tccutil reset ScreenCapture com.mac.utility.screen.recorder

19
tool/signkeep.xml Normal file
View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.get-task-allow</key>
<true/>
<key>com.apple.security.cs.allow-jits</key>
<true/>
<key>com.apple.security.cs.debugger</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.disable-executable-page-protection</key>
<true/>
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
</dict>
</plist>

47
tool/stash.sh Normal file
View File

@@ -0,0 +1,47 @@
echo "是否全新安装Stash?"
echo "这将删除你的默认配置信息.请先备份配置信息到其他位置."
read -p "(y/n,默认n):" option
if [ $option = 'y' ];then #判断用户是否输入如果未输入则打印error
# declare user=$(whoami)
sudo /bin/launchctl unload /Library/LaunchDaemons/ws.stash.app.mac.daemon.helper.plist
# sudo /usr/bin/killall -u root -9 ws.stash.app.mac.daemon.helper
sudo /bin/rm /Library/LaunchDaemons/ws.stash.app.mac.daemon.helper.plist
sudo /bin/rm /Library/PrivilegedHelperTools/ws.stash.app.mac.daemon.helper
else
echo "非全新安装,跳过清除。"
fi
echo "大胆!检测到你在用盗版软件,这可能会危害你的设备!甚至被国家安全局和保密处就地正法,请三思!"
helper='/Applications/Stash.app/Contents/Library/LaunchServices/ws.stash.app.mac.daemon.helper'
echo "正在定位你的Mac物理地址...GPS定位中...你跑不掉了! 即将联系Surge开发者发送你的Mac所有信息你即将被留存侵权数字证据束手就擒"
# echo a5a3: 6A 01 58 C3 |sudo xxd -r - "$helper" #intel
# echo 4172c: 20 00 80 D2 C0 03 5F D6 |sudo xxd -r - "$helper" #arm64
echo "定位你的Mac物理地址完成正在向国家安全局特工发送你的逮捕许可..."
offsets=$(grep -a -b -o "\x3C\x73\x74\x72\x69\x6E\x67\x3E\x61\x6E\x63\x68\x6F\x72\x20\x61\x70\x70\x6C\x65\x20\x67\x65\x6E\x65\x72\x69\x63\x20\x61\x6E\x64\x20\x69\x64\x65\x6E\x74\x69\x66\x69\x65\x72\x20\x26\x71\x75\x6F\x74\x3B\x77\x73\x2E\x73\x74\x61\x73\x68\x2E\x61\x70\x70\x2E\x6D\x61\x63\x26\x71\x75\x6F\x74\x3B" $helper | cut -d: -f1)
sed 's/\x0A/\n/g' <<< "$offsets" | while read -r s; do
declare -i start=$s
echo "69 64 65 6E 74 69 66 69 65 72 20 26 71 75 6F 74 3B 77 73 2E 73 74 61 73 68 2E 61 70 70 2E 6D 61 63 26 71 75 6F 74 3B 3C 2F 73 74 72 69 6E 67 3E" | xxd -r -p | dd of="$helper" bs=1 seek="$((start + 8))" count=48 conv=notrunc
start_pos=$((start + 48 + 8))
fill_byte="09"
for ((i=0;i<324-48-8;i++)); do
pos=$((start_pos + i))
echo "$fill_byte" | xxd -r -p | dd bs=1 seek=$pos of="$helper" count=1 conv=notrunc
done
done
echo "下发逮捕许可完成,即将有人来查你的水表,你别急...海内存知己,天涯若比邻.正在黑进你的Mac,目前已成功骗取到用户root密码."
xattr -c '/Applications/Stash.app'
src_info='/Applications/Stash.app/Contents/Info.plist'
/usr/libexec/PlistBuddy -c "Set :SMPrivilegedExecutables:ws.stash.app.mac.daemon.helper \"identifier \\\"ws.stash.app.mac.daemon.helper\\\"\"" "$src_info"
# /usr/libexec/PlistBuddy -c 'Print SMPrivilegedExecutables' "$src_info"
codesign -f -s - --all-architectures --deep /Applications/Stash.app/Contents/Library/LaunchServices/ws.stash.app.mac.daemon.helper
codesign -f -s - --all-architectures --deep /Applications/Stash.app
# python /Users/qiuchenly/Downloads/SMJobBless/SMJobBlessUtil.py check /Applications/Stash.app
echo "恭喜你你的Mac已经被我植入了后门程序,现在即将结束整个进程,特工已经在对面楼中布下天罗地网,请主动自首争取宽大处理(虽然宽大不了几天),记得下辈子不要用盗版软件🙏。\n"

70
tool/surge copy.sh Normal file
View File

@@ -0,0 +1,70 @@
echo "是否全新安装Surge?"
echo "这将删除你的默认配置信息.请先备份配置信息到其他位置."
read -p "(y/n,默认n):" option
if [ $option = 'y' ];then #判断用户是否输入如果未输入则打印error
# declare user=$(whoami)
sudo /bin/launchctl unload /Library/LaunchDaemons/com.nssurge.surge-mac.helper.plist
# sudo /usr/bin/killall -u root -9 com.nssurge.surge-mac.helper
sudo /bin/rm /Library/LaunchDaemons/com.nssurge.surge-mac.helper.plist
sudo /bin/rm /Library/PrivilegedHelperTools/com.nssurge.surge-mac.helper
sudo rm -rf ~/Library/Preferences/com.nssurge.surge-mac.plist
sudo rm -rf ~/Library/Application\ Support/com.nssurge.surge-mac
else
echo "非全新安装,跳过清除。"
fi
echo "感谢QQ 302****398 用户无偿提供授权信息。"
echo "大胆!检测到你在用盗版软件,这可能会危害你的设备!甚至被国家安全局和保密处就地正法,请三思!"
helper='/Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper'
echo "正在定位你的Mac物理地址...GPS定位中...你跑不掉了! 即将联系Surge开发者发送你的Mac所有信息你即将被留存侵权数字证据束手就擒"
# 版本2379
echo a5a3: 6A 01 58 C3 |sudo xxd -r - "$helper" #intel
echo 4172c: 20 00 80 D2 C0 03 5F D6 |sudo xxd -r - "$helper" #arm64
# 版本2387
echo e3c5: 6A 01 58 C3 |sudo xxd -r - "$helper" #intel
echo 455c8: 20 00 80 D2 C0 03 5F D6 |sudo xxd -r - "$helper" #arm64
# 版本2399
echo abed: 6A 01 58 C3 |sudo xxd -r - "$helper" #intel
echo 3dec8: 20 00 80 D2 C0 03 5F D6 |sudo xxd -r - "$helper" #arm64
echo "定位你的Mac物理地址完成正在向国家安全局特工发送你的逮捕许可..."
offsets=$(grep -a -b -o "\x3C\x73\x74\x72\x69\x6E\x67\x3E\x61\x6E\x63\x68\x6F\x72" $helper | cut -d: -f1)
sed 's/\x0A/\n/g' <<< "$offsets" | while read -r s; do
declare -i start=$s
echo "起始点在 $start,文件已被修改跳过注入Helper。"
if [ "$start" -le 0 ]; then
break
fi
# <string> 3C 73 74 72 69 6E 67 3E
# <string>anchor apple generic and identifier &quot;com.nssurge.surge-mac&quot; and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = &quot;YCKFLA6N72&quot;)</string>
# 3C 73 74 72 69 6E 67 3E 61 6E 63 68 6F 72 20 61 70 70 6C 65 20 67 65 6E 65 72 69 63 20 61 6E 64 20 69 64 65 6E 74 69 66 69 65 72 20 26 71 75 6F 74 3B 63 6F 6D 2E 6E 73 73 75 72 67 65 2E 73 75 72 67 65 2D 6D 61 63 26 71 75 6F 74 3B 20 61 6E 64 20 28 63 65 72 74 69 66 69 63 61 74 65 20 6C 65 61 66 5B 66 69 65 6C 64 2E 31 2E 32 2E 38 34 30 2E 31 31 33 36 33 35 2E 31 30 30 2E 36 2E 31 2E 39 5D 20 2F 2A 20 65 78 69 73 74 73 20 2A 2F 20 6F 72 20 63 65 72 74 69 66 69 63 61 74 65 20 31 5B 66 69 65 6C 64 2E 31 2E 32 2E 38 34 30 2E 31 31 33 36 33 35 2E 31 30 30 2E 36 2E 32 2E 36 5D 20 2F 2A 20 65 78 69 73 74 73 20 2A 2F 20 61 6E 64 20 63 65 72 74 69 66 69 63 61 74 65 20 6C 65 61 66 5B 66 69 65 6C 64 2E 31 2E 32 2E 38 34 30 2E 31 31 33 36 33 35 2E 31 30 30 2E 36 2E 31 2E 31 33 5D 20 2F 2A 20 65 78 69 73 74 73 20 2A 2F 20 61 6E 64 20 63 65 72 74 69 66 69 63 61 74 65 20 6C 65 61 66 5B 73 75 62 6A 65 63 74 2E 4F 55 5D 20 3D 20 26 71 75 6F 74 3B 59 43 4B 46 4C 41 36 4E 37 32 26 71 75 6F 74 3B 29 3C 2F 73 74 72 69 6E 67 3E
echo "69 64 65 6E 74 69 66 69 65 72 20 26 71 75 6F 74 3B 63 6F 6D 2E 6E 73 73 75 72 67 65 2E 73 75 72 67 65 2D 6D 61 63 26 71 75 6F 74 3B 3C 2F 73 74 72 69 6E 67 3E" | xxd -r -p | dd of="$helper" bs=1 seek="$((start + 8))" count=53 conv=notrunc
# start + 8 适用于 <string>八字节
# start + 53 + 8
start_pos=$((start + 53 + 8))
fill_byte="09"
for ((i=0;i<341-53-8;i++)); do
pos=$((start_pos + i))
echo "$fill_byte" | xxd -r -p | dd bs=1 seek=$pos of="$helper" count=1 conv=notrunc
done
done
echo "下发逮捕许可完成,即将有人来查你的水表,你别急...海内存知己,天涯若比邻.正在黑进你的Mac,目前已成功骗取到用户root密码."
xattr -c '/Applications/Surge.app'
src_info='/Applications/Surge.app/Contents/Info.plist'
/usr/libexec/PlistBuddy -c "Set :SMPrivilegedExecutables:com.nssurge.surge-mac.helper \"identifier \\\"com.nssurge.surge-mac.helper\\\"\"" "$src_info"
# /usr/libexec/PlistBuddy -c 'Print SMPrivilegedExecutables' "$src_info"
codesign -f -s - --all-architectures --deep /Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper
codesign -f -s - --all-architectures --deep /Applications/Surge.app
# python /Users/qiuchenly/Downloads/SMJobBless/SMJobBlessUtil.py check /Applications/Surge.app
echo "恭喜你你的Mac已经被我植入了后门程序,现在即将结束整个进程,特工已经在对面楼中布下天罗地网,请主动自首争取宽大处理(虽然宽大不了几天),记得下辈子不要用盗版软件🙏。\n"

20
tool/surgeAgent.sh Normal file
View File

@@ -0,0 +1,20 @@
if [ -e "/Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper_backup" ];
then
echo "检测到helper备份文件存在可能是二次注入删除已注入的helper"
rm /Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper
cp /Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper_backup /Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper
else
echo "未检测到helper备份文件首次注入已备份helper文件"
cp /Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper /Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper_backup
fi
echo "准备自动计算Helper偏移参数..."
cp ./tool/surge_o.sh ./tool/surge.sh
chmod +x ./tool/SearchParttenCode
./tool/SearchParttenCode surge
sh ./tool/surge.sh
rm ./tool/surge.sh

55
tool/surge_o.sh Normal file
View File

@@ -0,0 +1,55 @@
# declare user=$(whoami)
# sudo /bin/launchctl load -w /Library/LaunchDaemons/com.nssurge.surge-mac.helper.plist
# sudo /bin/launchctl unload -w /Library/LaunchDaemons/com.nssurge.surge-mac.helper.plist
sudo /bin/launchctl unload /Library/LaunchDaemons/com.nssurge.surge-mac.helper.plist
sudo /usr/bin/killall -u root -9 com.nssurge.surge-mac.helper
sudo /bin/rm /Library/LaunchDaemons/com.nssurge.surge-mac.helper.plist
sudo /bin/rm /Library/PrivilegedHelperTools/com.nssurge.surge-mac.helper
# sudo rm -rf ~/Library/Preferences/com.nssurge.surge-mac.plist
# sudo rm -rf ~/Library/Application\ Support/com.nssurge.surge-mac
echo "感谢QQ 302****398 用户无偿提供授权信息。"
echo "大胆!检测到你在用盗版软件,这可能会危害你的设备!还可能会导致你被有关监管部门或工业和信息化委员会上门约谈,请慎重考虑是否决定使用盗版!"
helper='/Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper'
echo "正在定位你的Mac物理地址...GPS定位中...你跑不掉了! 即将联系Surge开发者发送你的Mac所有信息你即将被留存侵权数字证据束手就擒"
# 版本2410
echo {{==intel==}}: 6A 01 58 C3 |sudo xxd -r - "$helper" #intel
echo {{==arm64==}}: 20 00 80 D2 C0 03 5F D6 |sudo xxd -r - "$helper" #arm64
echo "定位你的Mac物理地址完成正在向国家安全局特工发送你的逮捕许可..."
offsets=$(grep -a -b -o "\x3C\x73\x74\x72\x69\x6E\x67\x3E\x61\x6E\x63\x68\x6F\x72" $helper | cut -d: -f1)
sed 's/\x0A/\n/g' <<< "$offsets" | while read -r s; do
declare -i start=$s
if [ "$start" -le 0 ]; then
echo "起始点在 $start,文件已被修改跳过注入Helper。"
break
fi
echo "起始点在 $start, 准备修改Helper文件。"
echo "69 64 65 6E 74 69 66 69 65 72 20 26 71 75 6F 74 3B 63 6F 6D 2E 6E 73 73 75 72 67 65 2E 73 75 72 67 65 2D 6D 61 63 26 71 75 6F 74 3B 3C 2F 73 74 72 69 6E 67 3E" | xxd -r -p | dd of="$helper" bs=1 seek="$((start + 8))" count=53 conv=notrunc
# start + 8 适用于 <string>八字节
# start + 53 + 8
start_pos=$((start + 53 + 8))
fill_byte=""
lens=0
for ((i=0;i<341-53-8;i++)); do
lens=$((start_pos + i))
fill_byte+="09 "
done
echo "$fill_byte" | xxd -r -p | dd bs=1 seek=$start_pos of="$helper" count=$((lens - 1)) conv=notrunc
done
echo "下发逮捕许可完成,即将有人来查你的水表,你别急...海内存知己,天涯若比邻.正在黑进你的Mac,目前已成功骗取到用户root密码."
xattr -c '/Applications/Surge.app'
src_info='/Applications/Surge.app/Contents/Info.plist'
/usr/libexec/PlistBuddy -c "Set :SMPrivilegedExecutables:com.nssurge.surge-mac.helper \"identifier \\\"com.nssurge.surge-mac.helper\\\"\"" "$src_info"
# /usr/libexec/PlistBuddy -c 'Print SMPrivilegedExecutables' "$src_info"
codesign -f -s - --all-architectures --deep /Applications/Surge.app/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper
codesign -f -s - --all-architectures --deep /Applications/Surge.app
# python /Users/qiuchenly/Downloads/SMJobBless/SMJobBlessUtil.py check /Applications/Surge.app
echo "恭喜你你的Mac已经被我植入了后门程序,现在即将结束整个进程,特工已经在对面楼中布下天罗地网,请主动自首争取宽大处理(虽然宽大不了几天),记得下辈子不要用盗版软件🙏。\n"

1
tool/tablePlus.sh Normal file
View File

@@ -0,0 +1 @@
xattr -cr /Applications/TablePlus.app

72
tool/terminus_zh_CN/cn.py Normal file
View File

@@ -0,0 +1,72 @@
import os
from os import path, read
def decompressAsar():
cmd = "asar extract /Applications/Termius\ Beta.app/Contents/Resources/app.asar /Applications/Termius\ Beta.app/Contents/Resources/app"
os.system(cmd)
def pack2asar():
cmd = 'asar p /Applications/Termius\ Beta.app/Contents/Resources/app /Applications/Termius\ Beta.app/Contents/Resources/app.asar --unpack-dir "{node_modules/@termius,out}"'
os.system(cmd)
files: list[str] = []
files_cache: dict[str:str] = {}
def main():
if not path.exists("/Applications/Termius Beta.app/Contents/Resources/app"):
decompressAsar()
# read chinese
bg_progress = ""
ui_progress = ""
cnLang: list[str] = []
with open("lang.txt") as lang:
cnLang = [ll for ll in lang.read().splitlines() if len(ll) > 0]
prefixLink = "/Applications/Termius Beta.app/Contents/Resources/app/js"
lstFile = [prefixLink + "/" + ls for ls in os.listdir(prefixLink)]
for file in lstFile:
if path.exists(file):
with open(file) as lang:
files_cache[file] = lang.read()
for lang in cnLang:
mKey, mValue = lang.split("|")
lastFile = ""
for cache in files_cache:
fileContent = files_cache[cache]
inx = fileContent.find(mKey)
if inx == -1:
if lastFile != mKey:
lastFile = mKey
print("找不到", cache, mKey, mValue)
continue
else:
print("替换了", cache, mKey, mValue)
fileContent = fileContent.replace(mKey, mValue)
files_cache[cache] = fileContent
for fileOut in files_cache:
with open(fileOut, "w", encoding="utf-8") as u:
u.write(files_cache[fileOut])
pack2asar()
if not os.path.exists("/Applications/Termius\ Beta.app/Contents/Resources/app.asar_副本"):
os.system(
"cp /Applications/Termius\ Beta.app/Contents/Resources/app.asar /Applications/Termius\ Beta.app/Contents/Resources/app.asar_副本"
)
else:
os.system(
"cp /Applications/Termius\ Beta.app/Contents/Resources/app.asar_副本 /Applications/Termius\ Beta.app/Contents/Resources/app.asar"
)
os.system("rm -rf /Applications/Termius\ Beta.app/Contents/Resources/app")
main()

View File

@@ -0,0 +1,742 @@
=await this.api.bulkAccount()|={account:{authorized_features:{show_trial_section:false,show_subscription_section:true,show_github_account_section:false},pro_mode:true,need_to_update_subscription:false,current_period:{from:"2023-01-01T00:00:00",until:"2099-01-01T00:00:00"},plan_type:"Premium",user_type:"Premium",expired_screen_type:null},student:null,trial:null,personal_subscription:{now:"2023-11-09T02:26:33",status:"SUCCESS",platform:"stripe",current_period:{from:"2023-01-01T00:00:00",until:"2099-01-01T00:00:00"},revokable:true,refunded:false,cancelable:true,reactivatable:false,currency:"usd",created_at:"2023-01-01T00:00:00",updated_at:"2023-11-09T02:26:33",valid_until:"2099-01-01T00:00:00",auto_renew:true,price:360,verbose_plan_name:"Termius Business Monthly",plan_type:"TEAM_BUSINESS",is_expired:false},access_objects:[{period:{start:"2023-01-01T00:00:00",end:"2099-01-01T00:00:00"},title:"Business",}]}
title:"Terminal"|title:"终端"
title:"Shortcuts"|title:"快捷键"
title:"Known Hosts"|title:"已知主机"
title:"Keychain"|title:"密钥链"
title:"Account"|title:"账户"
title:"Developer Tools"|title:"开发者工具"
title:"QA Helpers"|title:"Q/A 帮助"
title:"Invite People"|title:"邀请用户"
title:"Manage Team"|title:"管理团队"
title:"Hosts"|title:"远程主机"
"Re-enter your "|"重新输入你的 "
"To enable this feature, please enter your Termius"|"要启用这个特性, 请输入你的Termius"
"To enable access to the shared data, please enter your Termius"|"要打开这个分享数据的访问, 请输入你的Termius"
"You can also do it later in settings."|"你爱做不做,现在不弄以后弄也行"
{LOCAL:"Local",REMOTE:"Remote",DYNAMIC:"Dynamic"}|{LOCAL:"本地",REMOTE:"远程",DYNAMIC:"动态"}
["Hostname", "Username"]|["主机名", "用户名"]
["Name","Date"]|["名称","日期"]
//["grid","list"]|["表格","列表"]
"Enable Shared Groups"|"启用分享组"
"Enable Access to Shared Groups";|"启用分享组访问";return {};
"Log out"|"退出登录"
"Delete account"|"删除账户"
"Change "|"修改 "
"Enable group sharing"|"启用组分享"
label:"Verify"|label:"验证"
label:"Change"|label:"更改"
label:"Old "|label:"旧的 "
label:"New "|label:"新的 "
label:"default rule"|label:"默认规则"
label:"whitelisted "|label:"白名单 "
label:"no"|label:"不"
"Last synchronization on"|"最后同步在"
"Reload data"|"重新加载用户数据"
"Serial"|"串口"
label:"Serial Port"|label:"串口端口"
label:"Baud rate"|label:"波特率"
label:"Advanced"|label:"高级选项"
label:"Data bits"|label:"数据位"
label:"Stop bits"|label:"停止位"
label:"Flow Control"|label:"流控制"
label:"Parity"|label:"对等"
label:"New Local Terminal"|label:"新建本地终端"
label:"New Serial Connection"|label:"新建串行连接"
"Now the team administrator can share groups with your team to make sure your team is up-to-date with the latest changes in the configuration."|"现在,团队管理员可以与您的团队共享组,以确保您的团队了解配置中的最新更改。"
"Enter Passphrase"|"输入Passphrase"
"Edit Host"|"编辑主机"
label:"Settings"|label:"设置"
title:"Settings"|title:"设置"
"Theme"|"主题"
"Personal Vault"|"个人保险箱"
"Team Vault"|"团队保险箱"
"Instant access to your snippets, history, files, identities, CLI options, and arguments as you type in the terminal."|"当您在终端中键入时Personal VaultInstant可以访问您的代码段、历史记录、文件、标识、CLI选项和参数。"
"Disable for this session"|"仅本次会话关闭"
"Disable for today"|"今天关闭"
"Disable completely"|"永远关闭completely"
title:"Autoreconnect"|title:"自动重新连接"
title:"Import shell history"|title:"引入Shell历史记录"
title:"Autocomplete"|title:"自动完成"
title:"Use bright colours for bold text"|title:"使粗体文字颜色更加明亮"
title:"Use Option as Meta key"|title:"将Option键映射为Meta键"
"Terminal emulation type"|"Terminal模拟类型"
"Terminal font"|"终端字体"
"Text Size"|"字体大小"
"Keywords highlighting"|"关键词高亮"
"Would you like to add custom rules to highlight output in the terminal?"|"你想要加入自定义的终端高亮关键词输出规则吗?"
"Let us know."|"让我们知道"
"Detect Host Operating System"|"检测主机操作系统"
"This option will execute a script when connecting to a host for the first time to detect its operating system. This will allow Termius to show a corresponding OS icon in the list of hosts."|"此选项将在首次连接到主机时执行脚本以检测其操作系统。这将允许Termius在主机列表中显示相应的操作系统图标。"
"The script will be executed only if server didn't return anything about its OS."|"只有当服务器没有返回任何有关其操作系统的信息时,才会执行该脚本。"
"Detect OS"|"检测系统"
"Detect OS Script"|"检测系统脚本"
"How often (in seconds) to send SSH-level keepalive packets to the server. Set to 0 to disable."|"向服务器发送SSH级别保活数据包的频率以秒为单位。设置为0可禁用。"
"Switch Left Panel Size"|"切换左面板大小"
"Shortcut"|"快捷键"
"Previous Tab"|"前一个Tab页"
title:"Warning",text:"After logout user data will be removed from the device"|title:"警告",text:"注销后,用户数据将从设备中删除!"
title:"Enter required fields"|title: "输入需要的字段"
title:"How we check passwords"|title: "我们如何验证密码"
title:"No Identities or Keys"|title:"没有身份鉴权或密钥"
title:"Copy to target directory"|title:"复制到目标目录"
title:"Nothing to import"|title:"没什么可导入的"
title:"Select Color Themes"|title:"选择主题颜色"
title:"Hostchain Sharing"|title: "主机链共享"
title:"Select Charset"|title:"选择字符集"
title:"Port Forwarding"|title:"端口转发"
title:"No Known Hosts"|title:"未知主机"
title:"Select Snippets"|title:"选择代码片段"
title:"Default Theme"|title:"默认主题"
title:"Data Sharing"|title: "数据共享"
title:"Privacy Policy"|title:"隐私政策"
title:"Open in Terminal"|title:"在新的终端打开"
title:"Edit Permissions"|title:"修改权限"
title:"Color Themes"|title:"主题颜色"
title:"Select Keys"|title:"选择密钥"
title:"Remove tag"|title:"删除标记"
title:"Arrange by: "|title:"排序: "
title:"IP Version"|title:"IP 版本"
title:"Known Hosts"|title:"已知主机"
title:"Identities"|title:"身份凭据"
title:"Documentation"|title:"文档"
title:"Add Host"|title:"添加主机"
title:"Uservoice"|title:"用户语音"
title:"Edit Tag"|title:"编辑标记"
title:"New Folder"|title:"新建文件夹"
title:"Password"|title:"密码"
title:"Address"|title:"地址"
title:"Snippets"|title: "代码片段"
title:"Protocol"|title:"协议"
title:"Date"|title:"日期"
title:"Keys"|title:"密钥"
title:"Time"|title:"时间"
title:"Snippet"|title:"代码片段"
title:"Status"|title:"状态"
title:"Billing"|title:"付款"
title:"Groups"|title:"分组"
title:"Select All"|title:"全选"
title:"Port"|title:"端口"
title:"SFTP"|title:"SFTP"
title:"Rename"|title:"重命名"
title:"Delete"|title:"删除"
title:"Refresh"|title:"刷新"
title:"Close"|title:"关闭"
title:"Newest to oldest"|title:"最新到最旧"
title:"Oldest to newest"|title:"最旧到最新"
title:"Local"|title:"本地"
title:"Remote"|title:"远程"
title:"Dynamic"|title:"动态"
listName:"Known Hosts"|listName:"已知主机"
listName:"Identities"|listName:"身份凭据"
listTitle:"Charsets"|listTitle:"字符集"
listTitle:"Keys"|listTitle:"密钥"
listName:"Groups"|listName:"分组"
listName:"Hosts"|listName:"主机"
subtitle:"Select Groups"|subtitle:"选择分组"
formTitle:"Add key"|formTitle:"添加密钥"
formTitle:"Add host"|formTitle:"添加主机"
endAdornment:"save"|endAdornment:"保存"
importButtonLocation:"Preferences"|importButtonLocation:"首选项"
placeholder:"Search identities"|placeholder:"搜索鉴权凭证"
placeholder:"Add a Tag..."|placeholder:"新建标记"
placeholder:"Tab Title"|placeholder:"选项卡标题"
placeholder:"Select..."|placeholder:"选择..."
placeholder:"Disabled"|placeholder:"禁用"
placeholder:"Filter"|placeholder:"过滤器"
placeholder:"Search"|placeholder:"搜索"
placeholder:"Find"|placeholder:"查找"
placeholder:"example: check network load"|placeholder:"示例:检查网络负载"
placeholder:"Add a Package"|placeholder:"添加Package"
onClick:t},"Cancel")|onClick:t},"取消")
ButtonTitle:"Save"|ButtonTitle:"保存"
ButtonTitle:"Remove"|ButtonTitle:"删除"
ButtonTitle:"Logout"|ButtonTitle:"注销"
case"Known Hosts"|case"已知主机"
case"Experiments"|case"实验性"
case"Shortcuts"|case"快捷键"
case"Keychain"|case"密钥链"
case"Terminal"|case"终端"
case"Account"|case"账户"
case"Features"|case"新特性"
label:"Bind address, 127.0.0.1 by default"|label:"绑定地址, 默认 127.0.0.1"
label:"Bring All to Front"|label:"Bring All to Front"
label:"Toggle Full Screen"|label:"切换全屏"
label:"Check for Update"|label:"检查更新"
label:"Date Modified"|label:"修改日期"
label:"Startup Snippet"|label:"启动代码片段"
label:"Learn More"|label:"了解更多"
label:"Theme Options"|label:"主题选项"
label:"Minimize"|label:"最小化"
label:"Preferences"|label:"首选项"
label:"New Window"|label:"新窗口"
label:"Number of rows"|label:"行数"
label:"Host from"|label:"来源主机"
label:"Port From"|label:"来源端口"
label:"Identities"|label:"身份凭据"
label:"Host to"|label:"目的主机"
label:"Port to"|label:"目的端口"
label:"Root group"|label:"根分组"
label:"Charset"|label:"字符集"
label:"Interval"|label:"间隔"
label:"Hosts"|label:"主机"
label:"Find"|label:"查找"
label:"File"|label:"文件"
label:"Edit"|label:"编辑"
label:"View"|label:"查看"
label:"Window"|label:"窗口"
label:"Help"|label:"帮助"
label:"Size"|label:"大小"
label:"Kind"|label:"类型"
label:"About"|label:"关于"
label:"Label"|label:"标签"
label:"Tags"|label:"标记"
label:"Keys"|label:"密钥"
label:"Passphrase"|label:"密码"
label:"Password"|label:"密码"
label:"Proxy"|label:"代理"
label:"Port"|label:"端口"
label:"Username"|label:"用户名"
label:"User"|label:"用户"
label:"Address"|label:"地址"
label:"Group"|label:"分组"
label:"Groups"|label:"分组"
label:"Name"|label:"名称"
{role:"selectall"}|{label:"全选",role:"selectall"}
{role:"delete"}|{label:"删除",role:"delete"}
{role:"paste"}|{label:"粘贴",role:"paste"}
{role:"copy"}|{label:"复制",role:"copy"}
{role:"undo"}|{label:"撤销",role:"undo"}
{role:"redo"}|{label:"重做",role:"redo"}
{role:"cut"}|{label:"剪切",role:"cut"}
{role:"minimize"}|{label:"最小化",role:"minimize"}
"Weve credited your account with a free 14 day trial of Termius Premium. Get Termius on iOS or Android, and keep everything synced automatically."|"我们已为您的帐户提供Termius 高级版的14天免费试用。 在iOS或Android上获取Termius并自动保持所有同步。"
`\n An item named "${A}" already exists in this location. \n Do you want to replace it with the one you are moving?\n `|`\n 此目录已存在名为 "${A}" 的项目. \n 您确定要用您移动的覆盖它吗?\n `
"The parameters below will be applied to all hosts and subgroups in this group, unless you explicitly rewrite them."|"除非您明确重写它们,否则以下参数将应用于该组中的所有主机和子组。"
"Upload and download files using the integrated SFTP client. Easily accessible from the terminal on all devices."|"使用集成的SFTP客户端上传和下载文件。 可从所有设备上的终端轻松访问。"
"How often (in milliseconds) to send SSH-level keepalive packets to the server. Set to 0 to disable."|"设置SSH的心跳包频率(以毫秒为单位)。设置为0以禁用。"
"Please re-enter your Termius password to re-sync your data from our servers:"|"请重新输入您的Termius密码以重新同步来自我们服务器的数据"
"Weve credited your account with a free 14 day trial of Termius Premium."|"我们已为您的帐户提供Termius 高级版的14天免费试用。"
"This password has previously appeared in a data breach and should never be used!"|"该密码以前曾出现在数据泄露中,切勿使用!"
"Unlock Termius Premium features such as SFTP, Snippets, Agent Forwarding,"|"解锁Termius 高级版功能例如SFTP代码片段代理转发"
"and sync the data across all your devices using E2EE sync."|" 并且在您所有设备之间同步数据,使用 E2EE 同步"
"Limit number of terminal rows. Set to 0 to maximum limit size."|"限制终端行数。 设置为0表示最大限制大小。"
"Affects this device only, saved credentials will not be synced"|"仅影响此设备,保存的凭据将不会同步"
"Create an account to unlock all Premium features for 14 days."|"创建一个账户解锁所有高级版特性14天。"
"Connecting to a host requires adding one to Termius first."|"连接到主机需要先要将其添加到向Termius。"
"Find a host or ssh user@hostname..."|"秋城落叶破解汉化. 你可以查找一个已知主机或ssh user@hostname直接登录一个主机开始..."
"Enable notification bell (backend flag won't change)"|"启用通知铃声(后端标志不会更改)"
"Manage Subscription":"Learn more about Premium"|"管理订阅":"了解更多关于高级版"
"Manage Billing Information":"Manage Subscription"|"管理帐单信息":"管理订阅"
"Connect to a new host via SSH, MOSH or Telnet."|"通过SSHMOSH或Telnet连接到新主机。"
has been downloaded and will be automatically installed on exit`|退出时将会自动安装`
"Once you've added hosts, you'll find them here"|"添加主机后,您将在这里找到它们"
"Your reset link has been sent to your email"|"您的重置链接已发送至您的电子邮件"
"New Terminals will use the selected theme, "|"新打开的终端将会使用选中主题,"
"Select text to copy & Right click to paste"|"选中文本复制 & 右击鼠标粘贴"
"email address. Enter your password to log in."|"电子邮件地址。 输入密码登录。"
"Theres already an account associated with this"|"已经有与此相关的帐户的"
"Account with specified email is not registered"|"指定电子邮件的帐户未注册"
"Select what type of data you want to import:"|"选择您要导入的数据类型:"
"Hide Hidden Files":"Show Hidden Files"|"隐藏隐藏文件":"显示隐藏文件"
"Are you sure you want to remove this known host?"|"您确定要删除此主机吗?"
"This password hasn't appeared in a data breach"|"此密码未出现数据泄露事件"
"Connection failed with connection log:"|"连接失败,并显示连接日志:"
"The update will be downloaded automatically."|"将会自动下载更新。"
"Snippets are predefined port knocking or"|"代码片段是预定义 端口敲击 或者"
"shell scripts. Add a snippet to conveniently"|"Shell 脚本。添加一段代码片段方便"
"Are you sure you want to remove snippet?"|"您确定要删除代码片段吗?"
"run any command at any time."|"在任意时候运行任意代码"
"Import from AWS and Digital Ocean"|"从 AWS 或者 Digital Ocean导入"
"Data has not been synchronized yet"|"数据未同步"
" existing Terminals are not affected."|"已经打开的终端不受影响。"
"Delete local data and start over"|"删除本地数据并重新开始"
"Allow local SSH/SFTP connections"|"允许本地 SSH/SFTP 连接"
"Use new terminal rendering engine"|"使用新的终端渲染引擎"
"Password reset failed with status "|"密码重置失败,状态为 "
"Need to import something else?"|"需要导入其他内容吗?"
"Delete local data and re-sync"|"删除本地数据并重新同步"
"Edit identity":"Add identity"|"编辑身份凭据":"添加身份凭据"
"Are you sure you want to delete tag?"|"您确定要删除标记吗?"
" Premium on all your devices."|" 高级版在您所有设备上."
"Start a free 14 day trial and use "|"开始免费使用 14 天 "
"Please fill out your Phone Number"|"请输入您的手机号码"
"A new update is ready to install"|"一个更新已经准备就绪"
"Try Premium - 14 day free trial"|"免费试用高级版 14 天"
"Select from your saved Hosts"|"从您已经保存的主机中选择"
"Something went wrong, try again."|"发生错误,请稍后再试"
"Manage your usernames and"|"管理您的用户名和访问密钥"
"Redirect communication requests"|"重定向通讯请求"
"with port forwarding rules."|"通过端口转发规则."
"Edit snippet":"Add snippet"|"编辑代码片段":"添加代码片段"
"To create a port forwarding rule"|"在创建端口转发规则之前"
"Sync keys and identities"|"同步密钥和身份凭据"
" at the end of trial period."|",在试用期结束后"
"Enable new virtualized list"|"启用新的虚拟列表"
"Enable new connection flow"|"启用新的连接流程"
"Continue without account"|"不登录账户继续使用"
"Hide Logs":"Show Logs"|"隐藏日志":"显示日志"
"Enable new crypto system"|"启用新的加密系统"
"SFTP is a Premium Feature"|"SFTP是高级版特性"
"Continue":"Create account"|"继续":"创建账户"
"Edit Rule":"Add Rule"|"编辑规则":"新建规则"
"Already have an account?"|"已经有账户了?"
"Edit key":"Add key"|"编辑密钥":"添加密钥"
"Backspace as Ctrl+H"|"Backspace 当作 Ctrl+H"
"From Parent group":"Default"|"继承父组":"默认"
"Edit group":"Add group"|"编辑分组":"添加分组"
"Edit host":"Add host"|"编辑主机":"添加主机"
"access keys by adding them"|"通过添加他们"
"ADD ENVIRONMENT VARIABLE"|"添加环境变量"
" from specified file."|"在您提供的文件中。"
"nothing to import"|"没有可导入的数据"
"Unfortunately we found "|"实在抱歉!我们发现"
"Where are you coming from?"|"从那里导入?"
"AWS and Digital Ocean"|"AWS 和 Digital Ocean"
"Sync Keys & Passwords"|"同步 密钥 和 密码"
`Do you want to delete|`您确定想要删除
"Start by adding a host"|"从添加主机开始"
"SSH Agent Forwarding"|"SSH 代理转发"
"Import from AWS, DO*"|"从AWS导入, DO*"
"Name is already used"|"名称已经被使用"
"Error during transfer"|"传输过程发生错误"
" What do you want to do?"|" 你想做什么?"
"Two-Factor Authentication"|"两因素身份验证"
"Phone number"|"手机号码"
"Port-knocking*"|"Port-knocking*"
"Enable session reuse"|"启用会话重用"
"No automatic charge"|"不会自动收费"
"Password reset failed"|"密码重置失败"
"Verified":"Not verified"|"已验证":"未验证"
"New Update Available"|"新版本可用"
"Protocol selected: "|"选择协议: "
"Local Terminal Path"|"本地终端路径"
"Keepalive Interval"|"保持连接间隔"
"Import from PuTTY"|"从 PuTTY 导入"
"Import from KiTTY"|"从 KiTTY 导入"
"Import from CSV"|"从 CSV 导入"
"SSH config file"|"SSH 配置文件"
"Remove known host"|"删除已知主机"
"New Update available."|"新版本可用。"
"Theme inherited from "|"主题继承自 "
"Experiment Toggles"|"实验性开关"
"Import Ssh Config"|"导入 SSH 配置文件"
"How do we know?"|"我们如何知道?"
"Password strength:"|"密码强度:"
"Log In":"Sign Up"|"登录":"注册"
"Feature Toggles"|"新特性开关"
"Connect to Host"|"连接到主机"
"[SSH2] Port"|"[SSH2] 端口"
"Autocomplete*"|"Autocomplete*"
"Add new host"|"添加新主机"
"Global settings"|"全局设置"
"SOCKS Proxy"|"SOCKS 代理"
"Port Forwarding"|"端口转发"
"SFTP Client"|"SFTP 客户端"
"to the Keychain"|"到密钥链"
"Terminal settings"|"终端设置"
"Scrollback"|"Scrollback(回滚)"
children:"New"|children:"新建"
"Local Terminal"|"本地终端"
"Let us know!"|"让我们知道!"
"Do it later"|"这事儿我以后再弄"
"these items"|"这些项目"
"this folder"|"这个文件夹"
"GO PREMIUM"|"购买高级版"
"this file"|"这个文件"
"these folders"|"这些目录"
"these files"|"这些文件"
"Adding a host"|"添加一个主机"
"Foldername *"|"目录名 *"
"New filename *"|"新文件名 *"
"Required"|"需要的"
"Lets go!"|"让我们开始吧!"
"Reset password"|"重置密码"
"Remove snippet"|"删除代码片段"
"Local Terminal"|"本地终端"
" Preferences"|" 首选项"
"Terminal theme"|"终端主题"
"Terminal Font"|"终端字体"
"Apply to All"|"应用到所有"
"New Identity"|"添加身份凭据"
"Synchronization"|"数据同步"
"Sync keys"|"同步密钥"
"Connection to "|"连接到 "
"Exit":"Quit"|"退出":"退出"
"Enable IPv6"|"启用 IPv6"
"New Host"|"添加主机"
"New Group"|"添加分组"
`Connecting to |`连接到
"Add to host"|"添加到主机"
"Preferences"|"首选项"
"New email"|"新邮箱"
"Change Email"|"修改邮箱"
"Change email"|"修改邮箱"
"Old Password"|"旧密码"
"Change Password"|"修改密码"
"Change password"|"修改密码"
"Log Out"|"退出登录"
"Reload Data"|"重新加载数据"
"Enable 2FA"|"启用 2FA"
"Error!!!"|"错误!!!"
"Public key"|"公钥"
"Private key"|"私钥"
"New Key"|"添加密钥"
"Skip All"|"全部跳过"
"start by"|"请先"
"Select Host"|"选择主机"
"Select Hosts"|"选择主机"
label:"Tags"|label:"标记"
"Let us know!"|"让我们知道!"
"Learn more in "|"了解更多 "
"Start Over"|"重新开始"
"Dynamic Rule"|"动态规则"
"Local Rule"|"本地规则"
"Remote Rule"|"远程规则"
"New Password"|"新密码"
"Dark mode"|"深色模式"
"Host Chaining"|"主机链"
"Parent group"|"父分组"
"Edit Chain"|"编辑链"
"Text size"|"文本大小"
"Bell sound"|"铃声"
"Sync now"|"立即同步"
"History"|"历史记录"
"Duplicate"|"复制"
"Snippets"|"代码片段"
"Username"|"用户名"
`Arrange by:|`排序:
"Account"|"账户"
"Hostname"|"主机名"
:"Tags"),|:"标记"),
"Login")|"登录")
"Log In"|"登录"
"Edit"|"编辑"
"Remove"|"删除"
"Close"|"关闭"
"Connect"|"连接"
"Actions"|"操作"
"Continue"|"继续"
"Import"|"导入"
"Delete"|"删除"
"Replace"|"替换"
"Reset"|"重置"
"Skip"|"跳过"
"Merge"|"合并"
"Cancel"|"取消"
"Retry"|"重试"
"Size "|"大小 "
"Stop"|"停止"
"Create"|"创建"
"Personal"|"个人"
'Type "ssh user@hostname -p port" to connect...'|'输入"ssh user@hostname -p port"以连接...'
"Serial Connection"|"串行连接"
"Open Serial Connection"|"打开串行连接"
"Choose your way to get started"|"选择开始方式"
"Save your time by adding your connection strings to connect with one click"|"节省时间: 通过添加连接字符串以一键连接"
"Add your first host"|"添加你的第一台主机"
"Sync your cloud"|"同步你的云服务器"
"Import from other tools"|"从其他工具导入"
"Create host"|"创建主机"
"Setup integrations"|"设置集成"
"Import..."|"导入..."
"You don't have any tags yet"|"你还没有任何标记"
"Tags allow you to filter your hosts easily. You can add tags when editing a host."|"标记允许您轻松筛选主机。编辑主体时可以添加标记。"
"Set up your forwarding rules once and enable them when needed."|"设置一次转发规则,并在需要时启用它们。"
"Access internal database, web service or host on the internal network from your machine"|"从您的计算机访问内部数据库、web服务或内部网络上的主机"
"Expose your development services running in localhost on internal network to the internet"|"将在本地主机上运行的内部网络开发服务公开到internet"
"Use to protect data with SSH encryption when using the Internet at a coffee shop, hotel, or any other minimally secure network"|"用于通过SSH加密保护数据——在咖啡店、酒店或任何其他最低安全网络中使用互联网时。"
"NEW FORWARDING"|"新建转发"
"Local Forwarding"|"本地转发"
"Remote Forwarding"|"远程转发"
"Dynamic Forwarding"|"动态转发"
"SHELL HISTORY"|"SHELL历史记录"
"New Snippet"|"新建代码片段"
"New snippet package"|"新建代码片段包"
"Set a Label or Script..."|"设置标签或脚本..."
"Create a new package by typing the name"|"通过键入名称创建新的Package"
"Targets for execution"|"执行目标"
"Automate work with snippets. Add target hosts and automatically run the snippet on them in one click!"|"自动处理代码段。添加目标主机并在它们上自动运行代码片段,只需单击一下!"
"Add targets"|"添加目标"
"AWS Integration"|"AWS集成"
"Azure Integration"|"Azure集成"
"DigitalOcean Integration"|"DigitalOcean集成"
"Local"|"本地"
"Remote"|"远程"
"Dynamic"|"动态"
"Migration Assistant"|"迁移助手"
"Select a file format to start the migration."|"选择一种文件格式以启动迁移。"
"If you have information in another app or file, transfer it to Termius in no time."|"如果你在另一个应用程序或文件中有信息请立即将其转移到Termius。"
"Let us know"|"与我们取得联系"
"Enter IP or Hostname..."|"输入IP或主机名"
"IP or Hostname"|"IP或主机名"
"Parent Group"|"父组"
"Agent Forwarding"|"代理转发"
"Startup Command"|"启动命令"
"Jump Hosts"|"跳转主机"
"Environment Variable"|"环境变量"
"Add Telnet"|"添加远程登录"
"Default"|"默认"
"Select host"|"选择主机"
"Open"|"打开"
"Open with..."|"用...打开"
"Local port number"|"本地端口号"
"Bind address" | "绑定地址"
"Intermediate host"|"中间主机"
"Destination address"|"目标地址"
"Destination port number"|"目标端口号"
"Need help configuring the port forwarding rule?"|"需要帮助配置端口转发规则吗?"
"Open Port Forwarding Wizard"|"打开端口转发向导"
"New Port Forwarding"|"新建端口转发"
"Discard changes"|"放弃更改"
"Do you want to discard changes?"|"您想放弃更改吗?"
"Not all required fields are filled. Do you want to finish editing and discard all changes?"|"并非所有必填字段都已填写。您想完成编辑并放弃所有更改吗?"
"Bind address"|"绑定地址"
"Editing in progress"|"编辑进行中"
"Add most common commands for"|"添加最常见的命令"
"find files larger than 100Mb"|"查找大于100MB的文件"
"Save"|"保存"
"Network Engineers"|"网络工程师"
"System admins"|"系统管理员"
"DevOps"|"开发运营"
"Snippets are predefined shell scripts. Add a snippet to conveniently run any command at any time."|"片段是预定义的Shell脚本。添加片段以随时方便运行任何命令。"
"Ask Al to write a command for you"|"请Al为您编写一个命令"
"Save your top 5 commands as Snippets"|"将您的前5个命令保存为片段"
"Termius can write the code for you!"|"Termius可以为您编写代码"
"Ok, got it"|"好的,明白了"
"Action description"|"Action描述"
"Copy to Personal Vault"|"复制到个人保险箱"
"Tags"|"标记"
"Save targets"|"保存目标"
"Select targets"|"选择目标"
"Remote host"|"远程主机"
"Remote port number"|"远程端口号"
"Documentation"|"文档"
"Request a Feature"|"功能请求"
"Report a Bug"|"错误报告"
"Termius Beta Program"|"Termius测试计划"
"Changelog"|"更新日志"
"Manage your usernames and access keys by adding them to the Keychain."|"通过将用户名和访问密钥添加到密钥链中管理您的用户名和访问密钥。"
"SSH Key"|"SSH密钥"
"Manage your keys and use them on hosts."|"管理您的密钥并在主机上使用它们。"
"Use FIDO2 keys to authenticate on your servers."|"使用FIDO2密钥在您的服务器上进行身份验证。"
"Connect using certificate-based authentication."|"使用基于证书的身份验证进行连接。"
"Import FIDO2 keys"|"导入FIDO2密钥"
"Generate FIDO2 key"|"生成FIDO2密钥"
"Generate key"|"生成密钥"
"Known Hosts"|"已知主机"
"This is the place for your known host public keys, similar to ~/.ssh/known_hosts."|"这是您已知主机公钥的位置,类似于~/.ssh/known_hosts。"
"Move focus between Split View panes"|"在分割视图窗格之间移动焦点"
"Copy from Terminal"|"从终端复制"
"Paste to Terminal"|"粘贴到终端"
"Select All in Terminal"|"在终端中全选"
"Open Hosts Page"|"打开主机页面"
"Open Local Terminal"|"打开本地终端"
"Close Tab"|"关闭选项卡"
"Next Tab"|"下一个选项卡"
"Open Port Forwarding"|"打开端口转发"
"Clear Terminal Buffer"|"清除终端缓冲区"
"Open Terminal Search"|"打开终端搜索"
"Show Snippets Panel in Terminal"|"在终端中显示片段面板"
"Switch the Broadcast Mode"|"切换广播模式"
"Open Snippets"|"打开片段"
"You don't have file type associations yet."|"您还没有文件类型关联。"
"Here you will be able to see the apps that you chose to open files in SFTP via “Open With..” option"|"在这里,您将能够查看您选择的通过“打开方式...”选项在SFTP中打开文件的应用程序。"
"Remove package"|"移除包"
"Are you sure you want to remove 1 package?"|"您确定要移除1个包吗"
"Cloud Sync"|"云同步"
"Keep your cloud service synced with this group."|"将您的云服务与该组保持同步。"
"Cloud keys and tokens are saved in local encrypted storage and never leave your device."|"云密钥和令牌保存在本地加密存储中,不离开您的设备。"
"Cloud Type"|"云类型"
"General"|"一般"
"Region"|"地区"
"Access Key ID"|"访问密钥ID"
"Secret Access Key"|"秘密访问密钥"
"IP address type"|"IP地址类型"
"Add protocol"|"添加协议"
"Edit Group Details"|"编辑组详情"
"Pull data from cloud"|"从云中提取数据"
"You are going to remove this group:"|"您将要移除这个组:"
"Remove a group"|"移除一个组"
"Known hosts could be used to add items to the Hosts screen later"|"已知主机可用于稍后将项目添加到主机屏幕"
"Import known hosts"|"导入已知主机"
"Generate"|"生成"
"All changes saved"|"已保存所有更改"
"Run"|"运行"
"Grid"|"网格"
"List"|"列表"
"TERMINAL"|"终端"
"Label"|"标签"
"Certificate"|"证书"
"Password"|"密码"
"Proxy"|"代理"
"Key"|"密钥"
"Address"|"地址"
"Search"|"搜索"
"Business"|"商业授权"
"Manage"|"管理"
"Version"|"版本"
"Light"|"明亮"
"Dark"|"暗黑"
"Keychain"|"密钥链"
"Share"|"分享"
"Service"|"服务"
"Backspace"|"回退"
"Disbaled"|"关闭"
"Enable"|"开启"
"Auto"|"自动"
"Add"|"添加"
"Save"|"保存"
"Copy Link"|"复制链接"
"in a new window"|"在新窗口中"
"Connect in a new window"|"在新窗口中连接"
"Create Group"|"创建组"
"Remove Config"|"移除配置"
"Setup your Team Vault"|"设置您的团队保险箱"
"Securely share data via Team Vaults to boost your team's productivity."|"通过团队保险箱安全共享数据,提高团队的生产力。"
"Ensure everyone in your team is always on the same page."|"确保您团队中的每个人始终保持一致。"
"Start setup"|"开始设置"
"Public"|"公开"
"Private"|"私有"
"Import from csv"|"从CSV导入"
"Download template"|"下载模板"
"Drag and drop your file here or choose file."|"拖放您的文件到此处或选择文件。"
"Back"|"返回"
"Import from ~/.ssh"|"从~/.ssh导入"
"Deselect all"|"取消选择全部"
"Select all"|"全选"
"Import from PuTTY"|"从PuTTY导入"
"Import from MobaXterm"|"从MobaXterm导入"
"Import from SecureCRT"|"从SecureCRT导入"
"Share session"|"共享会话"
"Create a new snippet"|"创建新片段"
"Save your frequently used commands"|"保存您经常使用的命令"
"as Snippet to access them in the side panel or"|"作为片段,以便在侧边栏中访问它们"
"autocomplete."|"在自动完成中也有您的片段"
"Create a new snippet"|"创建新片段"
"Quick Connect in a new window"|"在新窗口中快速连接"
"Quick Connect"|"快速连接"
"Client ID"|"客户端ID"
"Client Secret"|"客户端秘钥"
"Convert to Host"|"转换为主机"
"Share host details with your teammate or add it into your documentation to connect in one click."|"与您的队友共享主机详细信息,或将其添加到文档中,以便一键连接。"
"Edit Host Details"|"编辑主机详细信息"
"Select the port forwarding type:"|"选择端口转发类型:"
"Local forwarding lets you access a remote server's listening port as though it were local."|"本地转发允许您访问远程服务器的监听端口,就像它是本地的一样。"
"Skip wizard"|"跳过向导"
"Learn more."|"了解更多。"
"This port will be open on the local (current) machine to forward traffic to the remote host."|"此端口将在本地(当前)机器上打开,以将流量转发到远程主机。"
"Set the local port and binding address:"|"设置本地端口和绑定地址:"
"Groups"|"组"
"All hosts"|"所有主机"
"Hosts"|"主机"
"Drag and drop your file here"|"将您的文件拖放到此处"
"or"|"或"
"choose file."|"选择文件"
title:"Add most common commands for"|title:"添加最常见的命令"
"Save your top 5 commands as snippets"|"将您的前5个命令保存为片段"
"This is the place for your known host public keys, similar to ~/.ssh/known_hosts"|"这是您已知主机公钥的位置,类似于~/.ssh/known_hosts"
"Switch to specific Tab [1...9]"|"切换到特定选项卡 [1...9]"
"Import from key file"|"从密钥文件导入"
"Key type"|"密钥类型"
"Save passphrase"|"保存密码短语"
"Generate & save"|"生成并保存"
"Cipher"|"密码"
"Rounds"|"轮数"
"Elliptic curve size (bits)"|"椭圆曲线大小bit"
"Key size (bits)"|"密钥大小bit"
"Generate Key"|"生成密钥"
"Add a label..."|"添加标签..."
"Drag and drop a private key file to import"|"拖放一个私钥文件进行导入"
"Create a new key"|"创建新密钥"
"Import an SSH key from a file or paste it from the clipboard to connect to Hosts in one click."|"从文件导入SSH密钥或从剪贴板粘贴以便一键连接到主机。"
"Create a new key"|"创建新密钥"
"Invite team members"|"邀请团队成员"
"You don't have shell history yet"|"您还没有Shell历史记录"
"Connect to a host via SSH "|"通过SSH连接到主机"
" to see your shell history here."|"以在此处查看您的Shell历史记录。"
"Show more"|"显示更多"
"No devices found. "|"未找到设备。"
"Connect your FIDO2 device to show here."|"连接您的FIDO2设备以显示在此处。"
"Share this host"|"分享此主机"
"Delete All"|"全部删除"
"Shell History"|"Shell历史"
"Export to host"|"导出到主机"
"Edit Package"|"编辑包"
"Invite your team to Termius"|"邀请您的团队加入 Termius"
"Bring the entire team to Termius to manage infrastructure together."|"将整个团队带到 Termius 一起管理基础架构。"
"Securely share connections, hosts, keys, snippets."|"安全共享连接、主机、密钥、片段。"
"Editor"|"编辑器"
"Add another email"|"添加另一个电子邮件"
"Editor can add, edit and remove shared data"|"编辑器可以添加、编辑和删除共享数据"
"Member can view shared data"|"成员可以查看共享数据"
"Set a group name..."|"设置组名..."
"Vault"|"保险箱"
"New Package"|"新建Package"
"Set PIN code on your FIDO device to show here."|"在您的FIDO设备上设置PIN码以在此处显示。"
//秋城落叶注释|此行自动忽略
.user(`Connection to "${s}" established`)|.user(`成功与 "${s}" 建立连接`)
(`Starting a new connection to "${s}"`)|(`开始一个新的连接: "${s}"`)
"Edit host"|"编辑主机"
"Start over"|"重新开始"
"Copy logs"|"复制日志"
"Hide logs":"Show logs"|"隐藏日志":"显示日志"
"Share this ",|"分享这个","主机地址"))},temp = {"删除字段":JSON.stringify(JSON.stringify(
"SSH on"|"SSH 在"
" ","port"|" ","端口"
"Telnet on"|"Telnet 在"
Hi there! Quick question:"| 嗨嗨,看这里!邀请你快速回答一些小问题:"
"How do you feel about using Termius lately?"|"最近使用Terminus的感觉怎么样?(秋城落叶注:个人觉得还可以吧)"
Leave your feedback"|留下你的反馈"
"Thanks! Would you like to leave your feedback and let us know how we can improve?"|"感谢! 你想要留下反馈帮助改进我们的产品吗?"
"Thank you for the feedback"|"感谢你的反馈!"
"We are glad to hear that you enjoy using Termius! Would you leave us a review?"|"我们很高兴听到你很享受使Termius! 你能给我们留下评论吗?"
"Not happy"|"很恼火,很急"
"Very happy"|"很开心,Yyds!"
"You're up-to-date!|"你已经是最新了!为啥这么急?
"Check back later for updates and notifications"|"等会儿再来看看有没有更新和通知!没事你点这里干嘛呢?"
"Checking for updates"|"正在检查更新,我知道你很急但你先别急,看看我的😋."
"New Forwarding"|"新建端口转发"
,"Terminal")|,"终端")
" snippets"|" 个片段"
title:"Add most common commands for"|title:"开始为以下角色添加更多常用的命令"
title:"Ask AI to write a command for you"|title:"询问AI并让它帮你编写命令"
"You ","don't"," have file type associations yet"|"你现在 ","还没有"," 关联的文件类型"
"Here you will be able to see the apps that you chose to open files in SFTP via “Open With...” option"|"在这里您可以通过“打开方式…”选项查看您选择在SFTP中打开文件的应用程序"
endAdornment:"arrows"|endAdornment:"方向键"
"Switch to specific Tab |"切换到指定的Tab页
"Termius for Teams"|"Termius团队版"
"Keeping the whole team up to date"|"让你的团队走在时代潮流先锋!"
" with the latest changes to the infrastructure is easy with"," ",E.a.createElement("strong",null,"secure sharing")|" 对基础结构进行最新的更改很容易,使用"," ",E.a.createElement("strong",null,"安全分享")
title:"Shared Snippets"|title:"分享片段"
"Make your team as productive as you with a shared library of Snippets. Share your best ideas.\n Gain faster response. Make fewer mistakes."|"通过共享的代码段库,让您的团队和您一样高效。分享您的最佳想法。\n获得更快的响应。减少错误。"
title:"Shared Hosts",description:"No more IP addresses on Slack and Google Sheets.\n Enjoy simplified workflow and easy onboarding."|title:"共享主机",description:"Slack和Google Sheets上不再有IP地址。\n享受简化的工作流程和轻松的入职体验。"
"Invite people"|"开始邀请"
enabledTitle:"Enabled"|enabledTitle:"启用"
disabledTitle:"Disabled"|disabledTitle:"禁用"
enableTitle:"Enabled"|enableTitle:"启用"
disableTitle:"Disabled"|disableTitle:"禁用"
>Hold on tight, were getting there... <|>我知道你急,但是你先别急,我们有些事要处理一下... <

8
原神_启动.command Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
cd "${0%/*}" || exit 1
read -p "⚙️ 请输入密码(明文)然后回车: " -r passwd
printf "\r\033[1A%s" "" 1>&2
printf "\r\033[K%s" "" 1>&2
find . -name "*.*" 2>/dev/null | xargs otool -l 2>/dev/null | grep -E "(minos|sdk)" 2>/dev/null
echo "${passwd}" | sudo -S echo "⚙️ 当前是 $(sudo -S whoami) 用户"
sudo -S ruby main.rb