Jump to content

SUBIECTE NOI
« 1 / 5 »
RSS
Wc Geberit

Routere detinute in trecut si in ...

Teii din fața casei

E-Mail in serie prin Excel si Out...
 Modul alimentare rulou/jaluzea ex...

Recuperare fișiere dupa form...

Aplicatii stress test RAM

Asigurare auto hibrid
 Asus B550M - PC-ul nu porneste di...

Tzanca Uraganu - Inconjurat de Fe...

explicatie montaj breadboard

3 Doors Down - Kryptonite
 Semnalizati cand virati pe un dru...

Succesiune - mostenire apartament...

Donez Siofor de 1000mg ( diabet t...

Izolatie intre parter si etaj
 

copyright

- - - - -
  • Please log in to reply
44 replies to this topic

#1
katsuchyo

katsuchyo

    Member

  • Grup: Members
  • Posts: 998
  • Înscris: 22.04.2005
cu ajutorul softurilor, din flash-uri se poate fura orice.. codul, imaginile, sunetele.. totusi.. cum va protejati munca?

chiar nu e nici o metoda? (in afara de a-l face executabil.. vorbesc de flash-urile pe care le puneti pe net)

#2
add

add

    Senior Member

  • Grup: Senior Members
  • Posts: 8,135
  • Înscris: 09.09.2003
nu prea e metoda, ce ajunge la tine in browser e cam al tau :|

#3
dacuburebista

dacuburebista

    Still Active Member

  • Grup: Senior Members
  • Posts: 3,450
  • Înscris: 30.09.2003
luam banii pe ele, apoi e treaba cui le foloseste....

#4
gcm

gcm

    Active Member

  • Grup: Banned
  • Posts: 1,255
  • Înscris: 12.11.2005
nici eu nu cunosc inca vreo metoda de protejare a fisierelor de pe server...

#5
katsuchyo

katsuchyo

    Member

  • Grup: Members
  • Posts: 998
  • Înscris: 22.04.2005

View Postadd, on Jan 6 2006, 15:07, said:

nu prea e metoda, ce ajunge la tine in browser e cam al tau :|

corect. totusi.. nu cred ca pe tot Earth-u' nu i-a venit nimanui o idee cum sa-si protejeze munca (normal, ma refer la flash)

#6
gcm

gcm

    Active Member

  • Grup: Banned
  • Posts: 1,255
  • Înscris: 12.11.2005
a fisierelor .swf bineinteles

#7
katsuchyo

katsuchyo

    Member

  • Grup: Members
  • Posts: 998
  • Înscris: 22.04.2005

Quote

Using Flash Obfuscation
So what exactly does obfuscation mean? To obfuscate is to make something confusing or difficult to understand. Many of the products we will look at use obfuscation to hide your code from decompilers. Here is a rundown of several effective tools to help prevent Flash theft:

ActionScript Obfuscator
This is a tool that scrambles ActionScript. It primarily scrambles variable names and other text references into strings that are difficult to reverse engineer. Rather than provide bulletproof protection again code theft, it discourages the user from figuring the code by scratch.

Tevas v.0.9
Tevas uses two very secure algorithms (the MD5 Message-Digest Algorithm and the TEA encryption algorithm) to encrypt passwords hard-coded in your Flash movie. It can also be used to encrypt Flash text. This product is currently freeware that will eventually be integrated into the ActionScript Obfuscator (see above)

Viewer Screwer
Viewer Screwer is a free online utility written by Marcel Debreuil. The program scrambles ActionScript into machine-readable source code. Specifically, it replaces all variable names and identifiers with a scrambled sequence of letters, which ultimately makes it very difficult to reverse engineer your ActionScript. You can access the application using the following username/password, which has been published in his public forum:
username: rmb
password: password

FLASM
FLASM is an open source assembler/disassembler that allows you to decode Flash on a very low level. Your Flash movie normally relies on branched instructions and a consistent flow. If you are comfortable with assembly programming, you can obfuscate your Flash movie by manipulating the sequence and execution of instructions, thus creating irreducible loops. In layman's terms, your Flash movie will resemble byte-code spaghetti, which will confuse most disassemblers.

Macromedia Flash MX 2004
Macromedia has recently implemented measures to protect Flash source code with the release of Flash MX 2004 Professional. This product incorporates support for compiled components and the SWC format. Flash developers can now create compiled code modules with built-in code hiding. With this release, Macromedia has created a new viable market for the sale of stand-alone Flash modules and products.

totusi.. mi se pare cam slabut.. mai caut

Edited by katsuchyo, 06 January 2006 - 15:22.


#8
gcm

gcm

    Active Member

  • Grup: Banned
  • Posts: 1,255
  • Înscris: 12.11.2005
am gasit un programel de vreo 2 MB care se cheama flash compiler and decompiler. cred ca acesta poate face ceva...si mi-a mai zis cineva de swf compiler, care le compileaza si nu mai pot fi salvate...acum downloadez si eu...
adresa e: http://www.download....8-10317141.html vedeti si voi daca mai gasiti altceva

#9
katsuchyo

katsuchyo

    Member

  • Grup: Members
  • Posts: 998
  • Înscris: 22.04.2005
io am gasit flashincrypt.. la http://www.flashincrypt.com/... numai ca trebuie cumparat.. deci nu imi foloseste la nimic  :D

ma uit acum la ce ai postat tu.


later edit: nu prea inteleg care e treaba cu flash compiler and decompiler

Edited by katsuchyo, 06 January 2006 - 15:38.


#10
katsuchyo

katsuchyo

    Member

  • Grup: Members
  • Posts: 998
  • Înscris: 22.04.2005

Quote

A Flash .swf, made with Flash 5 or MX, can be protected equally as well. However, it is a bit more difficult.

First, you can check to see if the .swf file is on your server. Do this by checking the _root._url property.

okToPlay = FALSE;
siteURL = "http://myserver.com";
if (_url.substr(0,siteURL.length) == siteURL) {
okToPlay = TRUE;
}
if (!okToPlay) {
getURL("http://myserver.com/stolen.html");
}


You can check for multiple site URLs, like "myserver.com" and "www.myserver.com".

So that takes care of someone stealing the .swf file and placing it on their server. However, someone could still make an OBJECT/EMBED tag that links to the .swf on your server.

Unfortunately, there is no externalParamValue function in Flash. So you can't read the "src" tag.

However, you can pass variables into Flash using the URL. For instance, "mymovie.swf?id=7&" will load the movie mymovie.swf, with the variable "id" equal to 7.

You can use this to secure your games a little better. Just include the "?id=7&" BOTH your OBJECT and EMBED tag on the HTML page. Then check in the Flash movie to see if "id" equals 7.

if (id == 7) {
okToPlay = TRUE;
}


If someone steals your game by linking to the .swf on your site, they will most likely copy the "?id=7&" portion of the tag as well.

However, you can open up the Flash movie, change it to check for id == 8, and then change your HTML page to read "?id=8&". So the game still works on your site, but not theirs. They can always change it to match, but chances are it won't be worth it to them to try to keep up with you. You always have the upper hand.

dar din pacate, nici asta nu prea ajuta daca ala iti vine cu un decompiler..

#11
gcm

gcm

    Active Member

  • Grup: Banned
  • Posts: 1,255
  • Înscris: 12.11.2005
orice parte buna are doua parti rele...o sa mai caut...

#12
Nigel

Nigel

    Active Member

  • Grup: Members
  • Posts: 1,197
  • Înscris: 24.08.2005
Și protect from import?

Decompilare, și alea sînt atît de deștepte să refacă toate movie clipurile? butoanele, etc. Eu de multe ori folosesc movie clip într-un movie clip în alt movie clip, etc.
Să văd eu decompliatoru ăla care mi le reface așa unul într-altul cum le-am construit eu :)

#13
katsuchyo

katsuchyo

    Member

  • Grup: Members
  • Posts: 998
  • Înscris: 22.04.2005
ma gandesc daca varianta cu load movie n-o fi ajutand la ceva..  :smoke:

#14
.ral:cr

.ral:cr

    Senior Member

  • Grup: Banned
  • Posts: 3,591
  • Înscris: 16.07.2004
nu, ca in temp ai toate fisierele. singura solutie este sa faci un as foarte complicat, nu exista decompilator care sa-ti faca fla functional.

si daca-ti faci grijij pt pozele si sunetele dinauntru i-ati gandul.

#15
gcm

gcm

    Active Member

  • Grup: Banned
  • Posts: 1,255
  • Înscris: 12.11.2005

View Post.ral:cr, on Jan 7 2006, 09:38, said:

nu exista decompilator care sa-ti faca fla functional.
ba da ! :naughty:

#16
sandossu

sandossu

    Alex Dumitru

  • Grup: Senior Members
  • Posts: 3,155
  • Înscris: 01.07.2005
si eu stiam ca nu exista

#17
gcm

gcm

    Active Member

  • Grup: Banned
  • Posts: 1,255
  • Înscris: 12.11.2005
exista ! deci combinand 2 programe reusesti sa ai fisierele .fla .... ;)

#18
.ral:cr

.ral:cr

    Senior Member

  • Grup: Banned
  • Posts: 3,591
  • Înscris: 16.07.2004
eu am combinat si 4 si nu merge.
acum depinde ce inseamna complicat.

eu m-am lasat de sportu asta, nu ca am vrut  neaparat, am fost nevoit.

Edited by .ral:cr, 09 January 2006 - 13:27.


Anunturi

Neurochirurgie minim invazivă Neurochirurgie minim invazivă

"Primum non nocere" este ideea ce a deschis drumul medicinei spre minim invaziv.

Avansul tehnologic extraordinar din ultimele decenii a permis dezvoltarea tuturor domeniilor medicinei. Microscopul operator, neuronavigația, tehnicile anestezice avansate permit intervenții chirurgicale tot mai precise, tot mai sigure. Neurochirurgia minim invazivă, sau prin "gaura cheii", oferă pacienților posibilitatea de a se opera cu riscuri minime, fie ele neurologice, infecțioase, medicale sau estetice.

www.neurohope.ro

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

Forumul Softpedia foloseste "cookies" pentru a imbunatati experienta utilizatorilor Accept
Pentru detalii si optiuni legate de cookies si datele personale, consultati Politica de utilizare cookies si Politica de confidentialitate