Aggregator
BurpSuite插件编写——辅助漏洞测试 - don0t
Better Real User Monitoring with BoomerangJS and Akamai mPulse
LordPE在win10无法工作折腾笔记-死而复生
AntSword v2.1.13更新日志
如何高效使用RapidDNS
大家好,我是BaCde。沉默了了有一段时间,最近一直在边开发边思考网站的发展。思考了很多,所以网站和公众号的更新就慢下来了。后续会多发一些跟网络安全相关的一些内容。
今天来分享点关于RapidDNS使用的小技巧。
Linux 命令快速查询将以下命令加入到 bash_profile文件中。
rapiddns(){ curl -s "https://rapiddns.io/subdomain/$1?full=1" \ | grep -oP '_blank">\K[^<]*' \ | grep -v http \ | sort -u }然后后面就可以使用rapiddns命令直接查询结果。
rapiddns tesla.com
浏览器搜索引擎快速查询如何高效使用RapidDNS
开源USB协议栈漏洞挖掘 - hac425
复现|摄像头固件重打包
腾讯自研HIDS「洋葱」后台上云架构演进实践
Attacker Tricks for Taking Over Risk-Based Multifactor Authentication
Akamai Provides Prolexic DDoS Service Impact Update (Status: Resolved)
Stopping Ransomware and Lateral Movement with Segmentation
Google 是如何落地静态代码分析的
安全招聘|平安银行人才招募令!
有奖调研 | 2021白帽调研启动!
Akamai Platform Update: New Security Enhancements That Intelligently Automate Application and API Security, Mitigate Online Fraud, and Reduce Burden on Security Professionals
Linux Asynchronous Copy and Paste
Asynchronous copy-paste can be helpful in a handful of situations:
- You can save the path in the clipboard and paste it later.
- You don’t have to work with super-long copy/move commands.
- Etc. (use your imagination)
You can add the following code snippet to your zshrc to add the three commands into your shell. Note that some of the syntaxes in this snippet are zsh-only. You might need to modify it a bit if you want to use it in bash or other shells.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 # async copy function ac() { unset ACOPY unset AMOVE export ACOPY=("${(@f)$(realpath -e $@)}") } # async move function am() { unset ACOPY unset AMOVE export AMOVE=("${(@f)$(realpath -e $@)}") } # async paste function ap() { if [ ! -z "$ACOPY" ]; then cp -vr "${ACOPY[@]}" . elif [ ! -z "$AMOVE" ]; then mv -v "${AMOVE[@]}" . unset AMOVE else >&2 echo 'clipboard empty' return 1 fi } Copying Files and DirectoriesYou can use the ac (stands for async-copy) command to copy one or more files/directories, and use the ap (stands for async-paste) command to paste it when you’re under another directory. Directories will be copied recursively automatically.
Asynchronously copying files and directories to a new location
You can use the am (stands for async-move) command to move one or more files/directories, and use the ap command to paste it elsewhere.
Asynchronously moving files and directories to a new location