前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >daily_2021

daily_2021

作者头像
tea9
发布2022-09-08 12:18:55
4540
发布2022-09-08 12:18:55
举报
文章被收录于专栏:tea9的博客

DAILY

2021年4月19日 学习记录

接码平台: https://www.zusms.com/ wannengjm.com http://www.kakasms.com/ deskos.cn https://yunduanxin.net/

2021年4月15日 学习记录

whatsapp

2021年4月14日 学习记录

有用的网站: 微步在线情报分享社区,刚看群里发现还有搞笑段子 如:

代码语言:javascript
复制
HW如何体面的维持甲方的“四菜一汤”
 匿名用户 2021-04-14 09:33:01 319次浏览
预警越来越少,已经从刚开始最多的一天40条,减少到了5条以内,每当甲方问我预警数时,眼神中充满期待又略带不安。

为了体面的维持甲方提供的“四菜一汤”

我决定自费采购几台VPS,再弄几个新域名,写几个自动化脚本。。。O(∩_∩)O哈哈~  

2021年4月13日 学习记录

seebug

seebug 漏洞分析seebug知道创宇 Android版Dropbox内容提供程序安全绕过漏洞

jsop跨域学习

参考链接: 解决cookie跨域访问 jsonp跨域请求详解——从繁至简 JSONP 劫持漏洞实例 常见WEB漏洞:JSONP安全与防御 读取cookie代码:

代码语言:javascript
复制
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>读取cookie</title>
<script type="text/javascript" src="https://www.w3school.com.cn/jquery/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
	// $(document).ready(function(){
	// 	$.ajax({
	// 		url:'http://www.baidu.com',dataType:"jsonp",jsonp:"jsonpcallback",success:function(data){
	// 			alert(data.res);
	// 		}
	// 	})
	// })

</script>
<script type="text/javascript">
xx();
	function xx(){
		var strCookie = document.cookie;
            var arrCookie = strCookie.split("; ");
            for(var i = 0; i < arrCookie.length; i++){
               var arr = arrCookie[i].split("=");
               console.log(arr[0],arr[1]);
               alert(arr[0],arr[1])
            }
         alert(1)
         alert(strCookie)
	}
</script>
</head>
<body>
    <h1>xxx</h1>
    <p>lll</p>
</body>
</html>

mac中apache默认位置

配置文件 /etc/apache2/httpd.conf 目录 DocumentRoot 及下面Directory

Apache运行命令:

sudo apachectl start //开始 sudo apachectl restart //重启 sudo apachectl stop //停止 默认位置在: /Library/WebServer/Documents

url schema 问题

草料二维码 activity组件导出实验 android androidmanifest需要检测的安全问题 tent scheme URL attack android scheme链接打开本地应用 Android Intent Scheme URLs攻击 7.7 Intent Scheme URL漏洞攻击检测 IntentScheme 细数安卓APP那些远程攻击漏洞 0x01 Android Intents with Chrome Android 跨应用间调用: URL Scheme

代码语言:javascript
复制
String url = "jafir://main.app?key=传递的参数" 
 Intent in = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
                    startActivity(in);

Intent intent = getIntent();
        String scheme = intent.getScheme();
        Uri uri = intent.getData();
        System.out.println("scheme:"+scheme);
        if (uri != null) {
            String host = uri.getHost();
            String dataString = intent.getDataString();
            //获得参数值
            String key1 = uri.getQueryParameter("key1");
      }  

android webview风险

android webview file域控制不严格利用 android webview 漏洞 android XSS攻击 TikTok for Android 1-Click RCE

OWASP Mobile Security Testing Guide

OWASPMobileSecurity basic-security_testing Mobile AppSec Verification Standard APP 安全测试(OWASP Mobile Top 10)–后篇之一 [翻译]OWASP 安卓测试指南(v1.2 - 14 May 2020)节选

SSL Pinning

[翻译]移动应用程序 SSL Pinning 安全开发与审计框架:Anddroid 设备案例

2021年4月12日 学习记录

APP调试中容易被忽视的安全项

gplaycli

gplaycli GPlayCli是用于从Google Play商店搜索,安装和更新Android应用程序的命令行工具。 https://github.com/matlink/gplaycli#installation 下载 $ gplaycli -p -v -d com.google.android.keep

KeyStore

keystore

android 逆向教程

《教我兄弟学Android逆向09 IDA动态破解登陆验证》

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • DAILY
    • 2021年4月19日 学习记录
      • 2021年4月15日 学习记录
        • 2021年4月14日 学习记录
          • 2021年4月13日 学习记录
            • seebug
            • jsop跨域学习
            • mac中apache默认位置
            • url schema 问题
            • android webview风险
            • OWASP Mobile Security Testing Guide
            • SSL Pinning
          • 2021年4月12日 学习记录
            • gplaycli
              • KeyStore
                • android 逆向教程
                相关产品与服务
                命令行工具
                腾讯云命令行工具 TCCLI 是管理腾讯云资源的统一工具。使用腾讯云命令行工具,您可以快速调用腾讯云 API 来管理您的腾讯云资源。此外,您还可以基于腾讯云的命令行工具来做自动化和脚本处理,以更多样的方式进行组合和重用。
                领券
                问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档