belkasoft.thinkific.com Open in urlscan Pro
2606:4700:4400::6812:239f  Public Scan

Submitted URL: http://bit.ly/belkasoftx2024
Effective URL: https://belkasoft.thinkific.com/courses/belkasoft-x?utm_campaign=Trial%20Request&utm_medium=email&_hsmi=72695765&_hsenc=p2ANqtz-...
Submission: On September 11 via manual from YE — Scanned from DE

Form analysis 1 forms found in the DOM

POST /tenant_leads

<form id="new_lead_b7ecfa1e8d" action="/tenant_leads" accept-charset="UTF-8" data-remote="true" method="post">
  <input name="utf8" type="hidden" value="✓" autocomplete="off"><input type="hidden" name="tenant_lead[page_url]"
    value="https://belkasoft.thinkific.com/courses/belkasoft-x?utm_campaign=Trial%20Request&amp;utm_medium=email&amp;_hsmi=72695765&amp;_hsenc=p2ANqtz-8qd3CGPXLCf_ir1_gTSkEG-PBO9DxyIUyX-SCS98l8rblpNinNhVg7l5tSkuXVw5ejaNXQn46q4LT45YaqX7rXtL3thY--yCIZOyIkcve_2MewpjE&amp;utm_content=72695765&amp;utm_source=hs_automation">
  <label for="new_lead_b7ecfa1e8d-email" class="form__label"> Email </label>
  <input id="new_lead_b7ecfa1e8d-email" type="email" name="tenant_lead[email]" value="" placeholder="Enter your email" autocapitalize="off" autocomplete="off" autocorrect="off" spellcheck="false" required="" aria-required="true" class="form__control"
    aria-describedby="new_lead_b7ecfa1e8d-error">
  <p aria-live="polite" id="new_lead_b7ecfa1e8d-error" class="form__error-msg hidden" role="alert"> Please enter a valid email address </p>
  <div class="form__group">
    <div>
      <input id="new_lead_b7ecfa1e8d-accept" class="form__group-checkbox" name="accept" type="checkbox" value="y" required="" aria-required="true" aria-describedby="new_lead_b7ecfa1e8d-accept-error">
      <label for="new_lead_b7ecfa1e8d-accept" class="form__label--checkbox">Yes please, save my details so you can send me educational content that is relevant and helpful.</label>
    </div>
    <p aria-live="polite" id="new_lead_b7ecfa1e8d-accept-error" class="form__error-msg hidden" role="alert"> Please check this box if you wish to proceed </p>
  </div>
  <div class="form__group form__button-group">
    <input id="new_lead_b7ecfa1e8d-submit-lead" type="submit" value="Submit" class="button button-primary" aria-label="Submit" aria-disabled="true">
    <p class="lead-capture__success-msg sr-only">Thank You</p>
    <p aria-live="polite" class="lead-capture__error-msg" role="alert"> Oops, something went wrong. Please try again with a different email address. </p>
  </div>
  <script>
    $(function() {
      $("#new_lead_b7ecfa1e8d > input[name='tenant_lead[page_url]']").val(window.location.href)
    });
    document.getElementById('new_lead_b7ecfa1e8d').addEventListener('thinkific:success', function(event) {
      $('#new_lead_b7ecfa1e8d-submit-lead').val("Thank You");
      $('#new_lead_b7ecfa1e8d').addClass('lead-capture__success')
      $('#new_lead_b7ecfa1e8d .lead-capture__error-msg').hide();
      $('#new_lead_b7ecfa1e8d .lead-capture__success-msg').show();
      setTimeout(function() {
        $('#new_lead_b7ecfa1e8d-submit-lead').val('Submit');
        $('#new_lead_b7ecfa1e8d').removeClass('lead-capture__success')
        $('#new_lead_b7ecfa1e8d')[0].reset();
        $('#new_lead_b7ecfa1e8d-submit-lead').attr('aria-disabled', 'true');
      }, 6000);
    })
    document.getElementById('new_lead_b7ecfa1e8d').addEventListener('thinkific:error', function(event) {
      $('#new_lead_b7ecfa1e8d .lead-capture__error-msg').show();
      $('#new_lead_b7ecfa1e8d .lead-capture__success-msg').hide();
    })
    $('#new_lead_b7ecfa1e8d-accept').on('click', function() {
      if ($('#new_lead_b7ecfa1e8d-accept').is(':checked')) {
        $('#new_lead_b7ecfa1e8d-submit-lead').removeAttr('aria-disabled');
      } else {
        $('#new_lead_b7ecfa1e8d-submit-lead').attr('aria-disabled', 'true');
      }
    });
  </script>
  <script>
    function addErrorMsg(fieldId, errorId) {
      fieldId.addClass('input--error');
      fieldId.attr("aria-invalid", "true");
      errorId.removeClass('hidden');
    }

    function removeErrorMsg(fieldId, errorId) {
      fieldId.removeClass('input--error');
      fieldId.attr("aria-invalid", "false");
      errorId.addClass('hidden');
    }
    var regex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
    var $email = $('#user\\[email\\]');
    var $emailError = $('#user\\[email\\]-error')
    $email.on('focusout', function() {
      if (!regex.test($email.val())) {
        addErrorMsg($email, $emailError);
      } else {
        removeErrorMsg($email, $emailError);
      }
    });
    var $leadCapture = $('#new_lead_b7ecfa1e8d-email')
    var $leadCaptureError = $('#new_lead_b7ecfa1e8d-error')
    $leadCapture.on('focusout', function() {
      if (!regex.test($leadCapture.val())) {
        addErrorMsg($leadCapture, $leadCaptureError);
      } else {
        removeErrorMsg($leadCapture, $leadCaptureError);
      }
    });
    var $leadCaptureCheckbox = $('#new_lead_b7ecfa1e8d-accept');
    var $leadCaptureCheckboxError = $('#new_lead_b7ecfa1e8d-accept-error');
    $leadCaptureCheckbox.on('focusout', function() {
      if (!$leadCaptureCheckbox.is(':checked')) {
        addErrorMsg($leadCaptureCheckbox, $leadCaptureCheckboxError);
      } else {
        removeErrorMsg($leadCaptureCheckbox, $leadCaptureCheckboxError);
      }
    });
    var $password = $('#user\\[password\\]');
    var $passwordError = $('#user\\[password\\]-error')
    $password.on('focusout', function() {
      if ($password.val().length < 1) {
        addErrorMsg($password, $passwordError);
      } else {
        removeErrorMsg($password, $passwordError);
      }
    });
    var $firstName = $('#user\\[first_name\\]');
    var $firstNameError = $('#user\\[first_name\\]-error');
    $firstName.on('focusout', function() {
      if ($firstName.val() === '') {
        addErrorMsg($firstName, $firstNameError);
      } else {
        removeErrorMsg($firstName, $firstNameError);
      }
    });
    var $lastName = $('#user\\[last_name\\]');
    var $lastNameError = $('#user\\[last_name\\]-error');
    $lastName.on('focusout', function() {
      if ($lastName.val() === '') {
        addErrorMsg($lastName, $lastNameError);
      } else {
        removeErrorMsg($lastName, $lastNameError);
      }
    });
    var $checkbox = $('#user\\[terms\\]');
    var $checkboxError = $('#user\\[terms\\]-error');
    $checkbox.on('focusout', function() {
      if (!$checkbox.is(':checked')) {
        addErrorMsg($checkbox, $checkboxError);
      } else {
        removeErrorMsg($checkbox, $checkboxError);
      }
    });
    var $file = $('.my-account__avatar-label');
    $file.on('change', function() {
      $file.append('<p aria-live="polite" id="my-account__avatar--error" class="sr-only" role="alert">liquid.partials.form.file_changed</p>')
    });
    var $select = $('.custom-select');
    var $selectError = $('#custom-select-error')
    $select.on('focusout', function() {
      if ($(this).prop('required')) {
        if (!$select.val()) {
          addErrorMsg($select, $selectError);
        } else {
          removeErrorMsg($select, $selectError);
        }
      }
    });
    var $customField = $('.custom-field');
    var $customFieldError = $('#custom-field-error');
    $customField.on('focusout', function() {
      if ($(this).prop('required')) {
        if ($customField.val() === '') {
          addErrorMsg($customField, $customFieldError);
        } else {
          removeErrorMsg($customField, $customFieldError);
        }
      }
    });
  </script>
</form>

Text Content

Skip to main content


BELKASOFT LEARNING CENTER

Toggle menu Menu
 * All courses
 * Sign In


BEYOND THE BASICS: MASTERING ADVANCED DIGITAL FORENSICS TECHNIQUES

All the essential features of the product in one comprehensive training.

Enroll today


WHAT'S INSIDE?

Gain hands-on experience in using Belkasoft X. Don't miss the opportunity to
participate in a free training while your Belkasoft X trial is still ongoing.

 * Analyze internet artifacts, such as emails and web browsing history, and
   system artifacts, such as the Windows registry, Windows 10 Timeline and
   others.

 * Use the built-in Connection Graph viewer in order to obtain an overview of
   connections (links between people) and their communications.

 * Detect and counter various anti-forensics techniques, use carving to recover
   deleted data from a hard drive and perform memory forensics.


COURSE CURRICULUM


 1. 1. INSTALLATION AND ADDING A DATA SOURSE
    
     a. 1.1. Introduction
    
     b. 1.2. Install Belkasoft Evidence Center X
    
     c. 1.3. Create a new case
    
     d. 1.4. Adding various data sources in Belkasoft X (article)
    
     e. 1.5. Add a data source (E01 image)


 2. 2. INTERNET ARTIFACTS AND LINK ANALYSIS
    
     a. 2.1. Working with discovered artifacts
    
     b. 2.2. Reviewing data from various data sources (article)
    
     c. 2.3. Use mini-timeline, global, and local filters
    
     d. 2.4. Practical case
    
     e. 2.5. BelkaQUIZ (3)
    
     f. 2.6. Connection Graph (article)
    
     g. 2.7. Belkasoft Connection Graph (video)
    
     h. 2.8. BelkaQUIZ (2)


 3. 3. WINDOWS ARTIFACTS AND COUNTERING ANTI-FORENSICS EFFORTS
    
     a. 3.1. What artifacts can be analyzed from a Windows system
    
     b. 3.2. Registry artifacts analysis
    
     c. 3.3. BelkaQUIZ (2)
    
     d. 3.4. Countering anti-forensics efforts
    
     e. 3.5. BelkaQUIZ (3)
    
     f. 3.6. How to analyze Windows 10 Timeline
    
     g. 3.7. BelkaQUIZ (2)


 4. 4. CARVING AND MEMORY ANALYSIS
    
     a. 4.1. Carving features in Belkasoft X
    
     b. 4.2. Carving and its implementation in digital forensics
    
     c. 4.3. BelkaQUIZ (2)
    
     d. 4.4. Discovering evidence with Live RAM analysis
    
     e. 4.5. BelkaQUIZ (2)


 5. 5. NARROW YOUR SEARCH: TIMELINE AND HASHSET ANALYSIS
    
     a. 5.1. Using Timeline (article)
    
     b. 5.2. Video tutorial on Belkasoft Timeline
    
     c. 5.3. BelkaQUIZ (2)
    
     d. 5.4. Hashset analysis in Belkasoft X
    
     e. 5.5. Run hashset analysis
    
     f. 5.6. BelkaQUIZ (2)


ABOUT THIS COURSE

--------------------------------------------------------------------------------

 * $989.00
 * 31 lessons


SOCIAL PROOF: REVIEWS

5 star rating


A VALUABLE RESOURCE FOR ASPIRING DIGITAL FORENSICS STUDENTS

PAUL MUMBI

As a student in the field of digital forensics, I recently had the privilege of
enrolling in the online course titled "Beyond the Basics: Mastering Advanced
Digital Forensics Techniques." I am thrilled to share my exceptional experience
with this ...

Read More

As a student in the field of digital forensics, I recently had the privilege of
enrolling in the online course titled "Beyond the Basics: Mastering Advanced
Digital Forensics Techniques." I am thrilled to share my exceptional experience
with this course, as it has truly exceeded my expectations and proven to be an
invaluable resource in my educational journey. First and foremost, the course
structure is well-designed and tailored to meet the needs of aspiring students
like myself. It takes a comprehensive approach, covering a wide range of
advanced digital forensics techniques that go beyond the basics. The content is
presented in a logical and progressive manner, allowing for a gradual
acquisition of knowledge and skills. One of the standout features of this online
course is its focus on practical application. The instructors go beyond
theoretical concepts, providing hands-on exercises, real-world case studies, and
practical assignments. This approach not only reinforces the learning material
but also equips students with the necessary skills to tackle complex digital
forensics challenges effectively.

Read Less




IMPROVE YOUR DFIR SKILLS

Grow with Belkasoft

Enroll today


MORE SELF-PACED COURSES FROM BELKASOFT


 * SQLITE FORENSICS WITH BELKASOFT
   
   Course
   5.0 average rating (40 reviews)
   
   This course is designed for digital forensics investigators and cyber
   incident responders who want to learn more about SQLite forensics and how to
   extract as much information from their data sources as possible.
   
   $999
   
   Purchase


 * REMOTE ACQUISITION WITH BELKASOFT
   
   Course
   4.9 average rating (40 reviews)
   
   The course is designed for those who need to acquire evidence remotely and
   would like to learn more about all the needed steps, such as configuring a
   server, deploying an agent, and various ways to acquire data.
   
   $999


 * MOBILE FORENSICS WITH BELKASOFT
   
   Course
   
   Learn how to analyze and review mobile artifacts in Belkasoft X, to narrow
   your search and quickly find the data you need, or how to choose the right
   method to acquire Android or iOS data.
   
   $999


DON'T MISS THE NEWS!

Add your email to the mailing list to get the news about new self-paced courses
and promo plans from Belkasoft Learning Center.

Email

Please enter a valid email address

Yes please, save my details so you can send me educational content that is
relevant and helpful.

Please check this box if you wish to proceed

Thank You

Oops, something went wrong. Please try again with a different email address.

 * Belkasoft Linkedin (Open in a new window)
 * Belkasoft YouTube (Open in a new window)
 * Belkasoft Twitter (Open in a new window)

© Copyright Belkasoft Learning Center 2024
Teach online with Thinkific Open in a new window