-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version bugs for Mac #13
base: master
Are you sure you want to change the base?
Conversation
There is a small bug with the previous code |
@@ -76,7 +76,7 @@ function encrypt(password) { | |||
return callback(); | |||
} | |||
|
|||
var encryptedBody = cryptojs.AES.encrypt(marked(originalBody), password), | |||
var encryptedBody = cryptojs.AES.encrypt(marked.parse(originalBody), password), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the only thing that needs to be in the pull request. You have included many .md files for your specific project, and exposed your password as well
@@ -90,7 +90,7 @@ function encrypt(password) { | |||
|
|||
gulp.task('firewall:encrypt', () => { | |||
return gulp.src('_protected/*.*') | |||
.pipe(encrypt('password')) | |||
.pipe(encrypt('kismet2357')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoops, exposed your password
Thanks !!!
Best wishes
…On Tue, Feb 21, 2023 at 4:59 AM Mark Christison ***@***.***> wrote:
***@***.**** requested changes on this pull request.
------------------------------
In gulpfile.js
<#13 (comment)>
:
> @@ -76,7 +76,7 @@ function encrypt(password) {
return callback();
}
- var encryptedBody = cryptojs.AES.encrypt(marked(originalBody), password),
+ var encryptedBody = cryptojs.AES.encrypt(marked.parse(originalBody), password),
This is the only thing that needs to be in the pull request. You have
included many .md files for your specific project, and exposed your
password as well
------------------------------
In gulpfile.js
<#13 (comment)>
:
> @@ -90,7 +90,7 @@ function encrypt(password) {
gulp.task('firewall:encrypt', () => {
return gulp.src('_protected/*.*')
- .pipe(encrypt('password'))
+ .pipe(encrypt('kismet2357'))
Whoops, exposed your password
—
Reply to this email directly, view it on GitHub
<#13 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGG7AMC4FNQ4LBUSTADDQDTWYPLJZANCNFSM5PDRLD7Q>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
--
**********************************************************
〒606-8585 京都市左京区松ケ崎橋上町
京都工芸繊維大学
繊維学系
(Phd, Dr.
Division of Advanced Fibro-Science
Kyoto Institute of Technology,
Matsugasaki, Sakyo-Ku, Kyoto, 606-8585, JAPAN)
张 辉耀 (ZHANG HUIYAO)
TEL 080-8716-6955 E-mail: ***@***.***
************************************************************
|
No description provided.