3,006 questions
0
votes
0
answers
78
views
Preventing obfuscation not working with setter
I'm using a custom technique for super easy JSON decoding,
using abstract getters/setters and noSuchMethod override.
However the pragma to prevent obfuscation works with getters but not with setters.
...
1
vote
0
answers
61
views
How to integrate Spring Boot REST API into traditional servlet-based WAR with ProGuard obfuscation?
I have two separate web applications that I need to deploy together:
Services - Traditional Java EE servlet application:
Servlet-based (not Spring Boot).
Uses web.xml, servlets, filters, and valves
...
0
votes
1
answer
221
views
How to capture the plaintext chunk passed to loadstring in an obfuscated Lua (Luraph-like) stub (Lua 5.1/LuaJIT, no debug lib)
I’m working with an old, unsupported Lua addon (Lua 5.1/LuaJIT). Its entry script appears to be a Luraph-style bootstrap that eventually calls loadstring with a decompressed chunk. My goal is not to ...
1
vote
1
answer
200
views
How to reduce GitHub Actions build time and Docker image size
I have a GitHub Actions workflow that builds and deploys from the dev environment to the prod environment. Currently, the build job takes around 19–20 minutes, but I want to reduce this to about 5–6 ...
0
votes
1
answer
107
views
How to upload mapping file of an Android obfuscated library to Crashlytics
We have an Android library that we obfuscate, we then have an application (un-obfuscated) that implements the library, which has Firebase Crashlytics implemented, is it possible to use the mapping ...
0
votes
3
answers
80
views
How to prevent user from modifying data through Django DRF
My API endpoints are exposed to the browser via Django DRF which I'm aware is normal. However, the primary issue with this is that someone can perform any operation my API can perform without going ...
3
votes
1
answer
324
views
How to get readable stack trace in Firebase Crashlytics for obfuscated Flutter iOS app?
I have a Flutter application with code obfuscation enabled for both Android and iOS.
I want to see readable stack traces in Firebase Crashlytics for crashes in production.
For Android, this is well-...
0
votes
1
answer
202
views
What are best practices regarding obfuscating secure/financial code?
It is in the news that there has been $1.5 billion crypto hack. This was the result of a supply chain attack on a Javascript library (reviewers pdf). My understanding is that the below code ...
2
votes
0
answers
110
views
How to secure ASP.NET Core 8 MVC project when converting to a desktop app with Electron.NET?
I have an ASP.NET Core 8 MVC project structured in three layers: Business, WebAPI, and Model. I want to convert it into a desktop application, so I used Electron.NET. However, I faced serious security ...
0
votes
0
answers
81
views
ProGuard Obfuscated files are easily decoded using Android Java Decompiler
I obfuscated my Java files, however when opening the files with Android's Java Decompiler, It fully exposed the supposedly obfuscated code.
I want to obfuscate my Java files properly.
code snippet of ...
0
votes
1
answer
67
views
yGuard configuration in gradle.kotlin.dsl does miss elements
i have a yGuard config in gradle.kotlin.dsl, which is working only in parts and i can't figure out why.
Building a library with thirdparty dependencies i want to obfuscate my private code only and ...
1
vote
1
answer
93
views
How to process only my own code using WebPack?
I'm building an electron application using TypeScript and WebPack. I want to process my own code without touching any 3rd party dependencies. I tried to achieve it using the webpack-obfuscator plugin ...
0
votes
0
answers
118
views
Proguard: Can't process class [module-info.class]
I am trying to obfuscate my maven project. Below is the section that I added proguard to my pom.xml
`
com.github.wvengen
proguard-maven-plugin
<executions>
<...
1
vote
0
answers
114
views
SwiftShield Obfuscation Fails to Exclude Pods Files Properly
I am using SwiftShield to obfuscate my project, but despite using exclusion flags (--ignore-names, --ignore-targets), it continues to process certain files from the Pods directory, causing errors. ...
-1
votes
1
answer
147
views
yGuard configuration for public library (JAR) in gradle kotlin-script
I am building a library (JAR) in kotlin, which should be obfuscated.
There is (for the moment) one class and one method which should be able to be called from outside.
To obfuscate i would like to use ...