[front end ramble] Git internals - Git objects

Reading guide This article is right Git Pro 10.2 Git internals - git objects The interpretation and transformation of the chapter mainly introduces two things: 1) using Git underlying command to complete the submission, 2) trying to use NodeJS to parse Git objects (Ruby is provided in the article). ###0x001 initialization Initialize a local war ...

Posted by fredted40x on Sun, 17 Nov 2019 23:14:17 -0800

java verifying the jar file downloaded by maven

Sometimes maven is really a hole! Sometimes it prompts invalid LOC header (bad signat ure signature), But sometimes we don't prompt anything, the engineering report is wrong, the situation is more moderate, we don't know that we have met several weird Today, I encountered the first line error of POM prompt. How can it be? No error is reporte ...

Posted by Slippy on Fri, 08 Nov 2019 11:12:47 -0800

Install and configure MySQL database on Linux platform

Linux system version: CentOS 7.4MySQL version: 5.7.28There are three installation methods in Linux platform, RPM package, binary package and source package. This file mainly takes RPM package as an example to introduce how to install MySQL on Linux platform.Download address: https://dev.mysql.com/downloads/mysql/ The specific steps to install ...

Posted by UnknownPlayer on Tue, 29 Oct 2019 09:27:04 -0700

Make way upstairs, RoarCTF2019 Writeup

The author's original Qftm release: https://xz.aliyun.com/t/6576 Misc Sign in problem RoarCTF {check in!!! } Six years of gold There is a section of base64 at the end of the file, which can be seen as a compressed package when decoded to hexadecimal. Password required to open compressed pack ...

Posted by cbesh2 on Sat, 26 Oct 2019 21:44:16 -0700

Shiro's many Realm certifications

Multi Realm authentication Problem introduction Implementation plan First, MD5 and sha1 encryption are implemented respectively. MD5 Sha1 Realize multi Realm authentication in the project Implement Mapper interface Implement the corresponding mapper.xml file service processing Add multi Realm con ...

Posted by Noctule on Fri, 25 Oct 2019 10:24:54 -0700

Reptile crack know how login (do not use Selenium module)

I. analysis. Zhihu completes the steps of login Get cookies first (if you don't get the subsequent verification code, you can't get them) Get verification code Submit login related content The first two steps are simple and a little careful. The most difficult part is the third step. The front-end is js encrypted. There's no trick because the ...

Posted by kaveman50 on Mon, 21 Oct 2019 02:01:40 -0700

Wechat Public Number Development Notes

Development This project is based on the java web project, using tomcat as the web container. (Conditionally, you can use your own server and domain name to operate) First, we use natapp intranet penetration (or ngrok, personally recommended natapp) Intranet penetration tutorial Baidu By running natapp -authtoken ***** (***** represents ...

Posted by superhoops on Fri, 11 Oct 2019 01:41:44 -0700

Module time, datetime, random, hashlib, requests

Catalog package What is a bag? Why bag? 1. Introduction of packages 2. Absolute and relative imports - Absolute import - Relative import time module time stamp Formatting time Structured time sleep datetime module ...

Posted by Shendemiar on Mon, 07 Oct 2019 00:55:07 -0700

Custom sharing laraverl framework, separation of the front and back the wrong signature invalid 63002

<?phpclass JSSDK {private $appId;private $appSecret;private $url; // If the front and back end are separated, it is an interface request, you must customize the current page address to send it, otherwise the signature error 20190905public function __construct($appId, $appSecret,$url) {$this->appId = $appId;$this->appSecret = $appSecre ...

Posted by piet123 on Sat, 05 Oct 2019 17:07:19 -0700

Python hashlib encryption module

hashlib module Introduction: hashlib module is a module that provides string encryption function, including MD5 and SHA encryption algorithm. Specific encryption support includes:MD5,sha1,sha224,sha256, sha384, sha512, blake2b,blake2s,sha3_224, sha3_256, sha3_384, sha3_512, shake_128, shake_256 This module is widely used in user login authent ...

Posted by june82 on Mon, 09 Sep 2019 04:30:37 -0700