10 2019 档案

摘要:Cannot capture jmeter traffic in fiddler First, change Fiddler's port back to 8888 as it was originally. Next, change JMeter's proxy settings to point 阅读全文
posted @ 2019-10-31 10:23 ChuckLu 阅读(194) 评论(0) 推荐(0) 编辑
摘要:JMETER + POST + anti-forgery token Looking into XSRF/CSRF Prevention in ASP.NET MVC and Web Pages it appears that you're either sending an incorrect _ 阅读全文
posted @ 2019-10-31 10:21 ChuckLu 阅读(461) 评论(0) 推荐(0) 编辑
摘要:<input type="color"> https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/color JavaScript First, there's some setup. Here we establish som 阅读全文
posted @ 2019-10-31 10:13 ChuckLu 阅读(380) 评论(0) 推荐(0) 编辑
摘要:将以下代码保存在.bat文件,然后用管理员权限运行 pushd "%~dp0" #下面修改时间,根据操作系统的语言不同,会有不同的格式,比如2019-10-26date 10/26/2019 Hearthbuddy.exe 版本二 @echo offset d=%date%date 2020/1/4 阅读全文
posted @ 2019-10-28 21:54 ChuckLu 阅读(740) 评论(0) 推荐(0) 编辑
摘要:What are all the possible values for HTTP “Content-Type” header? You can find every content type here: http://www.iana.org/assignments/media-types/med 阅读全文
posted @ 2019-10-23 11:29 ChuckLu 阅读(234) 评论(0) 推荐(0) 编辑
摘要:这个错误,在使用List<T>的First函数遇到。 Sequence contains no elements? From "Fixing LINQ Error: Sequence contains no elements": When you get the LINQ error "Sequen 阅读全文
posted @ 2019-10-22 11:27 ChuckLu 阅读(10272) 评论(0) 推荐(0) 编辑
摘要:Check if List<Int32> values are consecutive One-liner, only iterates until the first non-consecutive element: bool isConsecutive = !myIntList.Select(( 阅读全文
posted @ 2019-10-21 15:14 ChuckLu 阅读(159) 评论(0) 推荐(0) 编辑
摘要:comparison of truncate vs delete in mysql/sqlserver [duplicate] DELETE DELETE is a DML Command. DELETE statement is executed using a row lock, each ro 阅读全文
posted @ 2019-10-21 14:06 ChuckLu 阅读(179) 评论(0) 推荐(0) 编辑
摘要:Are query string keys case sensitive? @gbjbaanb's answer is incorrect: The RFCs only specify the allowed character set for the query string. Like the 阅读全文
posted @ 2019-10-16 15:55 ChuckLu 阅读(392) 评论(0) 推荐(0) 编辑
摘要:比如需要操作某一张表league的数据,multi-tenancy的模式,每一行数据都有一个租户id的字段。 那么在api调用操作的时候,我们需要检查league的id,是否和当前用户所属的租户信息一致。防止传递了假信息。处理越权访问的问题。 Understanding Action Filters 阅读全文
posted @ 2019-10-14 17:30 ChuckLu 阅读(315) 评论(0) 推荐(0) 编辑
摘要:转自nga大佬的三连=普通消除,同时对周围相邻格子的机制造成伤害。如果有特殊糖参与三连还会触发特殊糖效果。第一次满足条件的特殊消除会在原地产生一个特殊糖,之后还要通过一次普通三连或者两颗相邻的特殊糖互换,才能触发特殊效果直四=条纹糖,炸一条直线,横四=横向糖,竖四=纵向糖方四=鲤鱼糖,炸一个(系统认 阅读全文
posted @ 2019-10-14 13:09 ChuckLu 阅读(494) 评论(0) 推荐(0) 编辑
摘要:DNGuard HVM Unpacker(3.71 trial support and x64 fixed) Gr8 news. Finally got the x64 crash fixed. DNGuard HVM Unpackerwhats new: Dnguarg HVM 3.71 tria 阅读全文
posted @ 2019-10-14 12:45 ChuckLu 阅读(2825) 评论(0) 推荐(0) 编辑
摘要:Git push branch from one remote to another? A quick test making some temporary repositories shows you can construct a refspec that can do this: $ git 阅读全文
posted @ 2019-10-14 10:30 ChuckLu 阅读(324) 评论(0) 推荐(0) 编辑
摘要:2019年09月的 intptr_0 = method_18("mono.dll"); intptr_31 = intptr_0 + 522030; intptr_28 = intptr_0 + 91559; intptr_13 = intptr_0 + 226176; intptr_16 = in 阅读全文
posted @ 2019-10-12 11:28 ChuckLu 阅读(692) 评论(11) 推荐(0) 编辑
摘要:使用de4dot-cex反编译原版的hearthbuddy得到的 链接: https://pan.baidu.com/s/1hT79LpIjbyvODsjnkSe_5A 提取码: iemx class276里面的指针是通过class247得到的 internal Class276(ExternalP 阅读全文
posted @ 2019-10-12 11:06 ChuckLu 阅读(631) 评论(0) 推荐(0) 编辑
摘要:先打开进程,炉石传说。 然后选择MemoryView 在MemoryViewer界面,Tools菜单,然后选择Dissect PE headers 然后查看mono.dll的信息 0x357A0是新版本的 这个页面还可以打开本地另外备份的mono.dll,然后查看 发现0x3535C 右键选中界面的 阅读全文
posted @ 2019-10-12 10:05 ChuckLu 阅读(4503) 评论(0) 推荐(1) 编辑
摘要:https://blog.csdn.net/icandoit_2014/article/details/78739962 可以看出,此种方法只适用于程序崩溃但没有立即自行退出的情况。倘若程序故障后自行退出,则此方法就难以应用。不过,我们可以在注册表中添加如下信息已确保系统在程序崩溃后自行保存一个du 阅读全文
posted @ 2019-10-12 09:12 ChuckLu 阅读(568) 评论(0) 推荐(0) 编辑
摘要:https://gslab.qq.com/portal.php?mod=view&aid=194 阅读全文
posted @ 2019-10-11 20:16 ChuckLu 阅读(846) 评论(0) 推荐(0) 编辑
摘要:MY FAVORITE EXTENSIONS FOR WEB DEVELOPMENT A web browser is one of the essential tools for web development. Besides awesome dev tools that come with t 阅读全文
posted @ 2019-10-11 12:52 ChuckLu 阅读(165) 评论(0) 推荐(0) 编辑
摘要:Sending JSON to an ASP.NET MVC Action Method Argument 阅读全文
posted @ 2019-10-10 19:27 ChuckLu 阅读(131) 评论(0) 推荐(0) 编辑
摘要:How to receive JSON as an MVC 5 action method parameter 解答1 Unfortunately, Dictionary has problems with Model Binding in MVC. Read the full story here 阅读全文
posted @ 2019-10-10 19:19 ChuckLu 阅读(331) 评论(0) 推荐(0) 编辑
摘要:https://api.jquery.com/jquery.ajax/ What is content-type and datatype in an AJAX request? contentType is the type of data you're sending, so applicati 阅读全文
posted @ 2019-10-10 19:03 ChuckLu 阅读(169) 评论(0) 推荐(0) 编辑
摘要:https://stackoverflow.com/a/24394578/3782855 You don't need the ValidationHttpRequestWrapper solution since MVC 4. According to this link. Put the tok 阅读全文
posted @ 2019-10-10 18:26 ChuckLu 阅读(184) 评论(0) 推荐(0) 编辑
摘要:Enable Inspector When started with the --inspect switch, a Node.js process listens for a debugging client. By default, it will listen at host and port 阅读全文
posted @ 2019-10-10 17:56 ChuckLu 阅读(290) 评论(0) 推荐(0) 编辑
摘要:有一个Process列 查看到进程编号是24836 然后用chrome自带的TaskManager查看对应的是哪一个进程 https://www.lifewire.com/google-chrome-task-manager-4103619 阅读全文
posted @ 2019-10-10 17:50 ChuckLu 阅读(692) 评论(0) 推荐(0) 编辑
摘要:If you attach to a process/game that uses mono, you should see a new "Mono" menu item on the Cheat Engine form. This will have an Activate mono featur 阅读全文
posted @ 2019-10-10 13:17 ChuckLu 阅读(1115) 评论(0) 推荐(0) 编辑
摘要:Documenting your code with XML comments 阅读全文
posted @ 2019-10-10 11:42 ChuckLu 阅读(124) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/ae6623/archive/2011/04/16/4416874.html https://www.52pojie.cn/thread-828030-1-1.html https://wiki.cheatengine.org/index.php?ti 阅读全文
posted @ 2019-10-10 02:05 ChuckLu 阅读(1848) 评论(0) 推荐(0) 编辑
摘要:https://github.com/dsasmblr/game-hacking Cheat Engine Hacking memory Cheat engine have a feature called Dissect mono that can help hacking game's memo 阅读全文
posted @ 2019-10-10 00:44 ChuckLu 阅读(857) 评论(0) 推荐(0) 编辑
摘要:https://github.com/cplotts/snoopwpf/ Snoop is the open source WPF spying utility created by Pete Blois when he was employed at Microsoft. It allows yo 阅读全文
posted @ 2019-10-09 14:11 ChuckLu 阅读(491) 评论(0) 推荐(0) 编辑
摘要:Hakkar, the Soulflayer夺灵者哈卡Deathrattle: Shuffle a Corrupted Blood into each player's deck.亡语:将一张“堕落之血”分别洗入双方玩家的牌库。 Corrupted Blood's shuffle effect oc 阅读全文
posted @ 2019-10-01 20:31 ChuckLu 阅读(428) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示