ngrok

Is ngrok safe to use or can it be compromised?

落花浮王杯 提交于 2021-02-18 03:43:24
问题 Is ngrok a safe tool to use? I was reading a tutorial which recommended to use ngrok test API responses that I make to outside services that need to connect to my endpoints also. 回答1: There is no source code available for Version 2.0, considering it started as an open source project in 2014. I am suspect of any code that opens a tunnel to my localhost from the cloud. Pretty scary stuff especially without source code! 回答2: I found good rating, but vacuous information here: http://www

Is ngrok safe to use or can it be compromised?

六眼飞鱼酱① 提交于 2021-02-18 03:42:06
问题 Is ngrok a safe tool to use? I was reading a tutorial which recommended to use ngrok test API responses that I make to outside services that need to connect to my endpoints also. 回答1: There is no source code available for Version 2.0, considering it started as an open source project in 2014. I am suspect of any code that opens a tunnel to my localhost from the cloud. Pretty scary stuff especially without source code! 回答2: I found good rating, but vacuous information here: http://www

Ngrok configure multiple port in same domain

倾然丶 夕夏残阳落幕 提交于 2021-02-17 07:40:23
问题 Is it possible to open multiples ports in ngrok in same domain? Something like: Fowarding http://example.ngrok.com:50001 -> 127.0.0.1:50001 Fowarding http://example.ngrok.com:50002 -> 127.0.0.1:50002 I´m working in windows and it'll be useful for debuging with IIS Express 回答1: Yes, it is possible using multiple simultaneous tunnels, within the same hostname ! All you need to do, is to declare them on your configuration file, like this: authtoken: 4nq9771bPxe8ctg7LKr_2ClH7Y15Zqe4bWLWF9p

20种小技巧,玩转Google Colab

China☆狼群 提交于 2021-02-13 07:30:28
选自amitness.com 作者:Amit Chaudhary 机器之心编译 编辑:陈萍 Google Colab 给广大的 AI 开发者提供了免费的 GPU,你可以在上面轻松地跑 Tensorflow、Pytorch 等深度学习框架。但关于 Colab 的使用技巧你又掌握了多少呢?这篇文章将介绍 20 种 Colab 使用技巧,帮你提高使用效率。 1. 便签本 Notebook 当我们在 colab 上尝试一些临时的东西时,我们会创建一堆杂乱、没有标题的 Notebook。 为了解决这个问题,你可以把以下链接加入书签:https://colab.research.google.com/notebooks/empty.ipynb 这将打开一个特殊的 scratch notebook,并且你对该 notebook 所做的任何更改都不会保存到你的主目录中。 2. 单元计时 通常,我们手动计算一段代码的开始时间和结束时间之间的差值来衡量所花费的时间。Colab 提供了内置功能来执行此操作。在执行了一个单元(cell)之后,将鼠标悬停在单元运行图标上,你将获得代码执行时间的估计值。 3. 运行某个单元的一部分 你也可以运行某个单元的一部分,通过选择单元格并点击 Runtime 索引到 Run Selection 按钮或使用键盘快捷键 Ctrl + Shift + Enter。 4.

Node.js, socket-io based one to one chat engine working fine on LOCAL but not working when running on different laptops using ngrok

回眸只為那壹抹淺笑 提交于 2021-02-11 16:39:29
问题 I am working on a chat server and it's working fine on local but whenever I try to run the project using ngrok then me and my friend are unable to chat. var socket = io('http://localhost:7777', { query: { username: '<%= user %>' } }); Can anyone guide me how to make this public? Because the IP address changes everytime when connected to internet. and var app = express(); const chatServer = require('http').createServer(app); chatServer.listen(7777); I'm working in node.js for the first time

【社工】教你如何通过钓鱼获取他人真实位置

好久不见. 提交于 2021-02-10 14:22:08
扫码领资料 获黑客教程 免费&进群 作者:掌控安全学员-elapse 0x00前言 前段时间从一位老师那边学习到的,觉得还挺有趣,就此与大家分享。 整个搭建还是非常简单的。 0x01seeker的搭建 运行环境:kali linux 首先在github上下载seeker软件库 当然直接用git 更方便 git clone http://github.com/thewhiteh4t/seeker.git 害 下的有点慢 等等吧 下载完 cd到seeker目录 直接执行install.sh脚本文件 当然期间可能会遇到一些问题 前面显示pip3 没有安装 先看看install文件里有啥 执行了几条安装操作 和更改目录权限 查看目录权限 发现已经更改成功了 那么现在大概就是 第12行的requests库没有安装完成 先安装pip或者pip3 再安装request库 发现已经有这个库了 害 好了 python3 seeker.py 打开程序 注意了 这边直接只有执行是打不开的 要执行 python3 seeker.py -t manual 加上-t 参数 中间还是会抛一个异常 可以先不管 起码程序起来了 打开程序你会看见4个模板 这边我直接用Google drive 有兴趣的可以试试其他几个 选完模板 又会让你填入一个url 这个url是在别人访问授权位置后,重定向的页面 一旦授权位置

Test a bot functionality in Teams using ngrok

白昼怎懂夜的黑 提交于 2021-02-10 07:22:33
问题 I'm developing a bot using the Bot Framework and Azure for Microsoft Teams and I'll to develop and test my code directly in MS Teams using ngrok. In the settings of the bot I've set the message endpoint to the URL I get from ngrok and added /api/messages . But every time I want to send a message from Teams, I get a 401 unauthorized response. How could I authorize ngrok to send messages? Update: Form an answer of @Hilton Giesenow I've checked the appSettings.json file and everything is correct

Django request.user become AnonymousUser after third party redirect

故事扮演 提交于 2021-01-27 12:27:54
问题 test.html: <a href="https://auth.ebay.com/oauth2/authorize? ...">authorize</a> views.py: from django.contrib.auth.decorators import login_required @login_required def myview(req): user = req.user return render(req, 'test.html') For ebay's oauth process, you have to provide users with a link to ebay's server, which asks the user if they want to give credentials to you. If they accept, ebay redirects the user to a given url with a querystring containing the access key. The problem is, when I

20种小技巧,玩转Google Colab

生来就可爱ヽ(ⅴ<●) 提交于 2021-01-13 05:54:42
本文转载自机器之心。 选自amitness.com 作者:Amit Chaudhary 机器之心编译 编辑:陈萍 Google Colab 给广大的 AI 开发者提供了免费的 GPU,你可以在上面轻松地跑 Tensorflow、Pytorch 等深度学习框架。但关于 Colab 的使用技巧你又掌握了多少呢?这篇文章将介绍 20 种 Colab 使用技巧,帮你提高使用效率。 1. 便签本 Notebook 当我们在 colab 上尝试一些临时的东西时,我们会创建一堆杂乱、没有标题的 Notebook。 为了解决这个问题,你可以把以下链接加入书签:https://colab.research.google.com/notebooks/empty.ipynb 这将打开一个特殊的 scratch notebook,并且你对该 notebook 所做的任何更改都不会保存到你的主目录中。 2. 单元计时 通常,我们手动计算一段代码的开始时间和结束时间之间的差值来衡量所花费的时间。Colab 提供了内置功能来执行此操作。在执行了一个单元(cell)之后,将鼠标悬停在单元运行图标上,你将获得代码执行时间的估计值。 3. 运行某个单元的一部分 你也可以运行某个单元的一部分,通过选择单元格并点击 Runtime 索引到 Run Selection 按钮或使用键盘快捷键 Ctrl + Shift +

用树莓派构建一台服务器,永久运行网站

亡梦爱人 提交于 2021-01-04 12:22:04
Python实战社群 Java实战社群 长按识别下方二维码, 按需求添加 扫码关注添加客服 进Python社群▲ 扫码关注添加客服 进Java社群 ▲ 作者丨彭小呆 来源丨SegmentFault 社区 https://segmentfault.com/a/1190000021143144 No.1 前言 由于本人在这段时候,看到了一个叫做树莓派的东东,初步了解之后觉得很有意思,于是想把整个过程记录下来。 No.2 树莓派是什么? Raspberry Pi(中文名为树莓派,简写为 RPi,(或者 RasPi / RPI) 是为学习计算机编程教育而设计),只有信用卡大小的微型电脑,其系统基于 Linux。随着 Windows 10 IoT 的发布,我们也将可以用上运行 Windows 的树莓派。 自问世以来,受众多计算机发烧友和创客的追捧,曾经一“派”难求。别看其外表“娇小”,内“心”却很强大,视频、音频等功能通通皆有,可谓是麻雀虽小,五脏俱全。 1. 用我的话理解 用我的话理解就是树莓派就是一台主机,你可以外接显示器,键盘鼠标,u盘等等外设,因为它体积很小,而且又有很多串口和外接的口,可以直接调用很多底层硬件。 2. 市面上的型号 市面上大多是 3 代 B+ 型,淘宝一搜树莓派一大堆都是,价钱纯主板(不要任何外设)在 230+ 左右,有点小贵,超过我的预算,所以我继续寻找廉价的