Gravatar 头像无法加载

Gravatar(英语:Globally Recognized Avatar)是一项用于提供在全球范围内使用的头像服务。只要你在Gravatar的服务器上上传了你自己的头像,你便可以在其他任何支持Gravatar的博客、论坛等地方使用它。

由于众所周知的原因,头像服务器多数都无法正常访问,不管是http还是https。为了解决头像问题有两个办法:

1.直接禁用头像服务

2.替换头像服务器连接。

第二种情况比较蛋疼的地方在于要找一个可用的镜像比较麻烦,可以通过下面的连接来获取可用连接。

Continue Reading

Litespeed Cache https模式下css/js 加载失败

安装litespeed插件并且开启之后,发现原有的页面样式丢失了。导致这个问题的原因在于虽然访问的是https的链接,但是资源文件依旧是http协议加载的,所以就直接挂掉了。解决这个问题最简单的办法应该是开启全站https,但是我并不想这么干,想依旧提供http访问的能力。于是找各种解决方法,网上提供的解决方案包含但不限于下面这几种:

1. 通过插件解决:例如Really Simple SSL等进行样式修复,但是我安装了没有效果。

2.通过修改functions.php添加以下代码(无效):

add_filter('script_loader_src', 'agnostic_script_loader_src', 20,2);
function agnostic_script_loader_src($src, $handle) {
    return preg_replace('/^(http|https):/', '', $src);
}
 
add_filter('style_loader_src', 'agnostic_style_loader_src', 20,2);
function agnostic_style_loader_src($src, $handle) {
    return preg_replace('/^(http|https):/', '', $src);
}
Continue Reading

Loginpress Pro Cracked

LoginPress Pro is a premium plugin which works if you have installed Free version already. So, first install our Free version from wordpress.org https://wordpress.org/plugins/loginpress/ and then install the Pro package.

Crack log:

1. replace the content of  loginpress-main.php with flow content

2. active the plugin with any code .

Continue Reading

UniApp Android高德地图黑屏

如何在uniapp中引入高德地图可以参考这篇文章,http://www.xiongdalin.com/2019/11/27/unaipp-amap/。不过引入之后如果离线打包那么很可能在安卓系统上会黑屏,因为没有引入对应的sdk。

如果要解决这个问题需要引入:

implementation files('libs/map-amap-release.aar')
implementation files('libs/amap-libs-release.aar')
# 不要同时引入amap-gp-libs-release

官方文档中没有说明如何引入高德的sdk,如果通过高德下载sdk导入会导致各种冲突,同样引入上面的amap-gp-libs-release也会导致各种冲突。

Continue Reading

RetDec IDA plugin

idaplugin

RetDec plugin for IDA (Interactive Disassembler).

The plugin is compatible with the IDA 7.5+ versions. The plugin does NOT work with IDA 6.x, IDA 7.0-7.4, or freeware version of IDA 7.0. The plugin comes at both 32-bit and 64-bit address space variants (both are 64-bit binaries). I.e. it works in both ida and ida64. At the moment, it can decompile the following architectures:

  • 32-bit: x86, arm, mips, and powerpc.
  • 64-bit: x86-64, arm64.
Continue Reading

Cutter 免费开源逆向工具

Download

Cutter release binaries for all major platforms (Linux, macOS, Windows) can be downloaded from GitHub Releases.

  • Linux: Download the .AppImage file. Then make it executable and run as below or use AppImageLauncher.
    chmod +x Cutter*.AppImage; ./Cutter*.AppImage
  • macOS: Download the .dmg file or use Homebrew Cask:
    brew install --cask cutter
  • Windows: Download the .zip archive or use Chocolatey:
    choco install cutter
Continue Reading