Jump to content

سؤال لـ اصحاب الخبرهـ


Recommended Posts

السلام عليكم ورحمةة الله وبركاتهه

اخواني اصحاب الخبرهـ العاليهه اود ان اطرحح سؤالين بخصوص الاكواد وغيرهـ

lua انتشر فـ الاونه الاخيرهـ كثرة فكـ تشفير ملفات

واصبح لافائدهـ من صنع والتعب فـ المود

ولا يوجد طريقةة لـ منع فك التشفير

lua سؤالي الان هو ][ هل من الممكن استعمال الاكواد فـي صيغه اخرى غير

وهل يمكن تشفير هذه الملفات وماهي برامج تشفيرها وهل يمكن فكـ تشفير تلك المللفات ؟

اتمنى من الكل يساهم فـ الموضوع

وشكرا

Link to comment
عندك طريقه انك تشفر المود وتخليه على صيغه اختصآر

مافهمتكـ والله ي بلاوي اشرح كلامك الله لايهينكـ :]

انا اتمنى انه يكون فيه طريقةة تمنع منعاا باااااااااتاآأآأ لـ فكـ التشفير :D

Link to comment
-- حطه أول الملف 
function dxDrawColorText(str, ax, ay, bx, by, color, scale, font, alignX, alignY) 
  bx, by, color, scale, font = bx or ax, by or ay, color or tocolor(255,255,255,255), scale or 1, font or "default" 
  if alignX then 
    if alignX == "center" then 
      ax = ax + (bx - ax - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font))/2 
    elseif alignX == "right" then 
      ax = bx - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) 
    end 
  end 
  if alignY then 
    if alignY == "center" then 
      ay = ay + (by - ay - dxGetFontHeight(scale, font))/2 
    elseif alignY == "bottom" then 
      ay = by - dxGetFontHeight(scale, font) 
    end 
  end 
  local alpha = string.format("%08X", color):sub(1,2) 
  local pat = "(.-)#(%x%x%x%x%x%x)" 
  local s, e, cap, col = str:find(pat, 1) 
  local last = 1 
  while s do 
    if cap == "" and col then color = tocolor(getColorFromString("#"..col..alpha)) end 
    if s ~= 1 or cap ~= "" then 
      local w = dxGetTextWidth(cap, scale, font) 
      dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) 
      ax = ax + w 
      color = tocolor(getColorFromString("#"..col..alpha)) 
    end 
    last = e + 1 
    s, e, cap, col = str:find(pat, last) 
  end 
  if last <= #str then 
    cap = str:sub(last) 
    dxDrawText(cap, ax, ay, ax + dxGetTextWidth(cap, scale, font), by, color, scale, font) 
  end 
end 
  

Link to comment
-- حطه أول الملف 
function dxDrawColorText(str, ax, ay, bx, by, color, scale, font, alignX, alignY) 
  bx, by, color, scale, font = bx or ax, by or ay, color or tocolor(255,255,255,255), scale or 1, font or "default" 
  if alignX then 
    if alignX == "center" then 
      ax = ax + (bx - ax - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font))/2 
    elseif alignX == "right" then 
      ax = bx - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) 
    end 
  end 
  if alignY then 
    if alignY == "center" then 
      ay = ay + (by - ay - dxGetFontHeight(scale, font))/2 
    elseif alignY == "bottom" then 
      ay = by - dxGetFontHeight(scale, font) 
    end 
  end 
  local alpha = string.format("%08X", color):sub(1,2) 
  local pat = "(.-)#(%x%x%x%x%x%x)" 
  local s, e, cap, col = str:find(pat, 1) 
  local last = 1 
  while s do 
    if cap == "" and col then color = tocolor(getColorFromString("#"..col..alpha)) end 
    if s ~= 1 or cap ~= "" then 
      local w = dxGetTextWidth(cap, scale, font) 
      dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) 
      ax = ax + w 
      color = tocolor(getColorFromString("#"..col..alpha)) 
    end 
    last = e + 1 
    s, e, cap, col = str:find(pat, last) 
  end 
  if last <= #str then 
    cap = str:sub(last) 
    dxDrawText(cap, ax, ay, ax + dxGetTextWidth(cap, scale, font), by, color, scale, font) 
  end 
end 
  

ي رجال يقوولون تنفكـ برضه ><

Link to comment
طيب خلهم يفكونه و يعطونكـ النتيجة من الأكواد ^^

والله اذا ما تنفكـ شي جدا طيب ومشكوـر على المساعدهـ ولكن باستخدام نظام تشغيل اخر غير وندز يمكن فتح اي ملف ><

^ على حد علمي :]

Link to comment
-- حطه أول الملف 
function dxDrawColorText(str, ax, ay, bx, by, color, scale, font, alignX, alignY) 
  bx, by, color, scale, font = bx or ax, by or ay, color or tocolor(255,255,255,255), scale or 1, font or "default" 
  if alignX then 
    if alignX == "center" then 
      ax = ax + (bx - ax - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font))/2 
    elseif alignX == "right" then 
      ax = bx - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) 
    end 
  end 
  if alignY then 
    if alignY == "center" then 
      ay = ay + (by - ay - dxGetFontHeight(scale, font))/2 
    elseif alignY == "bottom" then 
      ay = by - dxGetFontHeight(scale, font) 
    end 
  end 
  local alpha = string.format("%08X", color):sub(1,2) 
  local pat = "(.-)#(%x%x%x%x%x%x)" 
  local s, e, cap, col = str:find(pat, 1) 
  local last = 1 
  while s do 
    if cap == "" and col then color = tocolor(getColorFromString("#"..col..alpha)) end 
    if s ~= 1 or cap ~= "" then 
      local w = dxGetTextWidth(cap, scale, font) 
      dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) 
      ax = ax + w 
      color = tocolor(getColorFromString("#"..col..alpha)) 
    end 
    last = e + 1 
    s, e, cap, col = str:find(pat, last) 
  end 
  if last <= #str then 
    cap = str:sub(last) 
    dxDrawText(cap, ax, ay, ax + dxGetTextWidth(cap, scale, font), by, color, scale, font) 
  end 
end 
  

كود عناد يصعب فك تشفير كل الاكواد يعني يوم يفك ماراح يفهم الاكواد كاملة ^,^

Link to comment
-- حطه أول الملف 
function dxDrawColorText(str, ax, ay, bx, by, color, scale, font, alignX, alignY) 
  bx, by, color, scale, font = bx or ax, by or ay, color or tocolor(255,255,255,255), scale or 1, font or "default" 
  if alignX then 
    if alignX == "center" then 
      ax = ax + (bx - ax - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font))/2 
    elseif alignX == "right" then 
      ax = bx - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) 
    end 
  end 
  if alignY then 
    if alignY == "center" then 
      ay = ay + (by - ay - dxGetFontHeight(scale, font))/2 
    elseif alignY == "bottom" then 
      ay = by - dxGetFontHeight(scale, font) 
    end 
  end 
  local alpha = string.format("%08X", color):sub(1,2) 
  local pat = "(.-)#(%x%x%x%x%x%x)" 
  local s, e, cap, col = str:find(pat, 1) 
  local last = 1 
  while s do 
    if cap == "" and col then color = tocolor(getColorFromString("#"..col..alpha)) end 
    if s ~= 1 or cap ~= "" then 
      local w = dxGetTextWidth(cap, scale, font) 
      dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) 
      ax = ax + w 
      color = tocolor(getColorFromString("#"..col..alpha)) 
    end 
    last = e + 1 
    s, e, cap, col = str:find(pat, last) 
  end 
  if last <= #str then 
    cap = str:sub(last) 
    dxDrawText(cap, ax, ay, ax + dxGetTextWidth(cap, scale, font), by, color, scale, font) 
  end 
end 
  

كود عناد يصعب فك تشفير كل الاكواد يعني يوم يفك ماراح يفهم الاكواد كاملة ^,^

مشكور علىُ مشاركتكـ فـ الموضوع وان شاء اللهه هذا اللكود يمنع فكـ تشفير الملفات

هو انا ماطلعت الكلام ذا من راسي لاني شفت موضوع كان فيهه نفس السؤال واجاب

عاشق الشرق

بانهه حتى لو كان الف سطر يمكن فك الملف :]

ولكن ان شاء الله ذا الكود ينفع

:D

Link to comment
يرياجيل المود ينفك واكواده واضحه

بس الي يبي يطرح المود كانه يقول

'ابنزل سروالي في الشارع ولاحد يشوفني'

اعذروني على قباحة التعبير

:)

خخخخخخخخخخ طيب عندك حل للتشفير ؟؟

لآني آشوف موداتك دايم مشفره بشكل غريب -_- غير عن التشفير العادي يكون فيها طلآسسمم غريبة -_-

Link to comment

لالا فيه ناس كذا تجي تقولك

الملف ينفك تشفيره

وهو أصلاً ما جرب ولا يعرف كيف يفك التشفير

هذولي ناس الله يشفيهم ياخي

انا استجهلهم عشان عارف انهم حمقى

Edited by Guest
Link to comment

انا بعد ادور طريقة تشفير ماتنفك من زماااااان لكن للاسف مالقيت،ولهذا السبب انا تركت نشر المودات لانك جد تنقهر تتعب تسوي مود تدري ان لو يجتمع المنوبة على انهم يسوونه ما سووه ولا كان صدقني كان شحنت المنتديات مودات ماحد يسويها غيري بس وش نسوي اذا جاك منوب وفكه وحطه باسمه! انا الحمد لله قالي تابل على طريقة تخلي ملفات السيرفر ما تنزل ولا كان حتى سيرفر ما فتحت خخخخ

Link to comment

انا بعد ادور طريقة تشفير ماتنفك من زماااااان لكن للاسف مالقيت،ولهذا السبب انا تركت نشر المودات لانك جد تنقهر تتعب تسوي مود تدري ان لو يجتمع المنوبة على انهم يسوونه ما سووه ولا كان صدقني كان شحنت المنتديات مودات ماحد يسويها غيري بس وش نسوي اذا جاك منوب وفكه وحطه باسمه! انا الحمد لله قالي تابل على طريقة تخلي ملفات السيرفر ما تنزل ولا كان حتى سيرفر ما فتحت خخخخ

مافية كود يمنع فك التشفير ؟ او يصعب فهم الاكواد ؟؟

Link to comment

انا عن نفسي،جاتني فكرة اني اسوي سكربت تشفير،بحيث تسوي برمجة بكلمات ورموز ثانية وتمررها على سكربت التشفير عشان يفكها ويحولها برمجة،طبعا الفكرة موجودة بس يبي لها مخمخة شوي عشان تضبط واكيد لو صار راح يكون حصري لان لو انتشر الكل راح يعرف طريقة فك تشفيره وراح يقدر يعكس العملية وياخذ الملف مو مشفر

Link to comment

انا عن نفسي،جاتني فكرة اني اسوي سكربت تشفير،بحيث تسوي برمجة بكلمات ورموز ثانية وتمررها على سكربت التشفير عشان يفكها ويحولها برمجة،طبعا الفكرة موجودة بس يبي لها مخمخة شوي عشان تضبط واكيد لو صار راح يكون حصري لان لو انتشر الكل راح يعرف طريقة فك تشفيره وراح يقدر يعكس العملية وياخذ الملف مو مشفر

بس لو تركب كود حذف الملف اللي يلعب نفسة يقدر يروح والسيرفر يحمل وياخذ الملف بدون تشفير [ الملفات اللي تنزل كلنت بس ] سيرفر ماينزل تقريبا ؟

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...