Preventing source code being obtained, copied, read by various means such as obfuscation and encryption. Applies especially to interpreted languages such as JavaScript where source code will be run directly on the user's machine.
Questions tagged [source-code-protection]
183 questions
1
vote
1 answer
Code Protection With Loaded Assemblies (.NET)
This an example problem to illustrates my point. I'm not looking for a solution to this problem but instead the general idea behind it.
Lets just say I've got a project that lets people load in dynamic assemblies -- the idea being "plug-ins". Lets…

hugoware
- 35,731
- 24
- 60
- 70
1
vote
1 answer
Protect.exe for AutoLISP code protection
I am developing an architectural LISP-based package for a member of the IntelliCAD consortium. Per recommendations I have found on websites, I have used the Kelvinator to deformat and disguise some of the code. Now I am attempting to use…
Bill DeShawn
0
votes
1 answer
Securing source code when distributing debug .NET .dll files?
I've got a piece of web software which has a private component (a computational .DLL) that is consumed by a jointly developed website (ASP.NET). I develop the private .DLL and wanted to make sure that even when compiled as a debug .dll, it doesn't…

DeepSpace101
- 13,110
- 9
- 77
- 127
0
votes
0 answers
How could I compile a program programmatically without leaking the source code?
I've tried using MSBuild in another folder where I've just copied the project path as well as an instance path of MSBuild version 15, it works to compile programmatically with the main C# program using process.start on MSBuild.exe in. But this…
0
votes
1 answer
Angular source code not generating only for a few files, for some files its generating
I am trying to debug my application, we have recently upgraded our application to angular 13, the source codes weren't available in the developer tools for chrome, so I have added the sourceCode:true under the default configuration inside the…

Prajval Singh
- 501
- 3
- 9
0
votes
1 answer
Python package that makes calls to API server - how do I let package users access API without knowing the URLs?
I'm creating this Python package that makes calls to an API server, which runs some proprietary source code. I want the users of this package access to the API endpoints but not necessarily have access to API urls, how would I implement this?

keon6
- 97
- 1
- 1
- 6
0
votes
0 answers
Is there anyway to protect Django source code from being revealed, after giving server access to the client?
After deploying a Django project and giving server access to the client, is there anyway to protect the source code from being revealed?
Maybe somthing like seperating the servers for holding the database and the source code?
Or having some lock or…

Mohawo
- 47
- 7
0
votes
0 answers
android studio protecting critical data in source code
in my app I'm allowing the user to send emails using
implementation 'com.sun.mail:android-mail:1.6.6'
implementation 'com.sun.mail:android-activition:1.6.7'
and i have to set my gmail and password into the source code, is there any way to…

raul g h
- 21
- 3
0
votes
0 answers
hive query case when status "case when , rand"
this:
drop table if exists temp_a;
create table temp_a
as
select
case when rand(123) < 0.4 then 1
when rand(123) >= 0.4 and rand(123) < 0.8 then 2
else 3 end as label
from source_data ;
select label, count(1) as count from temp_a…

cai zoro
- 1
- 1
0
votes
0 answers
how to use cython to protect Python code?
I have developed a program with Python language and I want to finally provide this program as an executable file for Windows.(as a .exe file)
To protect the my code, various searches on the Internet and Google suggested that I use the Cython…

Navrang
- 41
- 4
0
votes
0 answers
Cronjobs are not not created using django-crontab
I want to create cronjobs dynamically, not by manually writing them in the CRONJOBS variable in the config.settings.py module source code
Here is my code:
from django.conf import settings
from sender.auxfunc.create_cronjob import func
class…

Vsevolod
- 21
- 4
0
votes
0 answers
How to hide source code in react development mode
I currently have a problem that prevents me from deploying in production mode, the deployment for the application happens in developer mode. Following this, is there anything that can be done to prevent the exposure of the source code?

Daniel Raz
- 41
- 4
0
votes
1 answer
Best method to check that a file hasn't been modified or altered
I'm working on a solution and one of the features is to check that some files have not been tampered in other words hacked. I was planning on using the MD5 sum with a mixture of created and modified dates, but wanted to see if anybody has done…

Michael D. Irizarry
- 6,186
- 5
- 30
- 35
0
votes
0 answers
Github data in transit
I was just wondering how the data is encrypted during transit to Github. Checking online there seems to be information about the encryption of the source code at rest but I can't seem to find any info on encryption during transit.
From Github…

dpython
- 1
- 1
0
votes
0 answers
Is it possible to scan IBM Business Automation Workflow source code with SonarQube?
IBM Business Automation Workflow has its own web IDE and it has the capabilities from IBM BPM (Process) and IBM Case Manager (Workflow-Case). Does anybody has a way to scan its source code with SonarQube?

martiniturbide
- 1
- 1