Mac OS cracking WiFi(WPA, WPA2)
The winter vacation in 2020 is true, brother
I silently brush the tutorial of security cattle at home, and the latest brush is the chapter of "wireless attack". Although Kali virtual machine is installed on the school machine, there is no Usb wireless network card. So I tried it with MacBook.
...
Posted by stonelord on Mon, 10 Feb 2020 22:29:13 -0800
Find the number of cores in Java
How do I find the number of cores available for an application from Java code?
#1 building
On Windows where Cygwin is installed, you can use:
System.getenv("NUMBER_OF_PROCESSORS")
#2 building
If you want to get the number of physical cores, run the cmd and terminal commands, and then parse the output to get the required informatio ...
Posted by jogisarge on Sun, 09 Feb 2020 06:58:00 -0800
Rotate video using FFmpeg
I've been trying to figure out how to rotate video using FFmpeg. I'm using iPhone Video in portrait mode. I know how to use it MediaInfo (great library, by the way) determine the current rotation angle, but now I'm stuck with FFmpeg.
According to my reading, you need to use the vfilter option. From what I see, it should look like this:
ff ...
Posted by raymedia on Sun, 09 Feb 2020 03:08:04 -0800
Simulate weak network environment using command line under Mac
For audio and video development, we often need to simulate the weak network environment and observe the performance of APP under the weak network, such as packet loss, delay, jitter, bandwidth restriction, etc. Mac system has a weak network tool APP, called Network Link Conditioner, which supports the visualization of the simulation and config ...
Posted by bugsuperstar37 on Sun, 02 Feb 2020 10:19:02 -0800
swoole battle in 2018 7-process details
Following the last chapter 2018 swoole 6-asynchronous redis
This presentation swoole process management module
Create child process
New process.php
<?php
$process = new swoole_process(function(swoole_process $pro) {
echo 'swoole Create process' . PHP_EOL;
}, false); // If set to true, the terminal will not display standard o ...
Posted by sandsquid on Fri, 31 Jan 2020 12:04:36 -0800
Notes on iOS reverse learning -- LLDB dynamic debugging target program
Notes on iOS reverse learning: LLDB dynamic debugging target program
Configure debugserver
1. Copy the debugserver in the mobile phone to the Mac (provided that the mobile phone has been used as a test machine)
scp root@192.168.0.15:/Developer/usr/bin/debugserver /Users/mac/Desktop/dump
2. Check the debugserver architec ...
Posted by matt86 on Fri, 31 Jan 2020 12:03:45 -0800
MySQL export data select into outfile usage
Reproduced from: https://blog.csdn.net/caoxiaohong1005/article/details/72571798
1. select into outfield function:
Export data to the specified directory of pc.
2. Syntax:
SELECT ... INTO OUTFILE 'file_name'
[CHARACTER SET charset_name]
[export_options]
export_options:
[{FIELDS | COLUMNS}
[T ...
Posted by artist-ink on Thu, 30 Jan 2020 21:26:38 -0800
MySQL export data select into outfile usage
Reproduced from: https://blog.csdn.net/caoxiaohong1005/article/details/72571798
1. select into outfield function:
Export data to the specified directory of pc.
2. Syntax:
SELECT ... INTO OUTFILE 'file_name'
[CHARACTER SET charset_name]
[export_options]
export_options:
[{FIELDS | COLUMNS}
[T ...
Posted by west4me on Thu, 30 Jan 2020 21:21:15 -0800
Multi thread crawling agent and verifying
Preface
One of the most common ways in anti crawler is to determine the frequency of your requests. If you send a large number of requests in a short period of time, whether you are a person or not, first seal your account or IP for a period of time. At this time, in order to achieve the goal of their ...
Posted by Jen_u41 on Wed, 29 Jan 2020 21:34:19 -0800
Electron 7.1.10 installation failed
I have a problem recently. That is, Mac OS can't read and write when it is plugged into NTFS format mobile hard disk, and then it finds that some file system prompts are occupied by Mac OS and can't be opened. Every time I need to execute the command to mount it manually... Then I can't accept the lazy cancer, so I developed a small tool with ...
Posted by RandomEngy on Sun, 26 Jan 2020 08:59:06 -0800